1 /*
2 * Player.java
3 *
4 * Created on February 6, 2003, 2:15 AM
5 */
6
7 package com.mlw.fps.model.business.vo;
8
9 /***
10 *
11 * @author Matthew Wilson
12 */
13 public class Map extends Base
14 {
15 private String name;
16
17 /*** Creates a new instance of Map
18 */
19 public Map()
20 {
21 }
22
23 /*** Creates a new instance of Map
24 */
25 public Map(String name)
26 {
27 this.name = name;
28 }
29
30 /*** Getter for property name.
31 * @return Value of property name.
32 */
33 public String getName()
34 {
35 return this.name;
36 }
37
38 /*** Setter for property name.
39 * @param name New value of property name.
40 */
41 public void setName(String name)
42 {
43 this.name = name;
44 }
45
46 public String toString()
47 {
48 return "Map: (pk="+getPk()+", name=" +getName()+")";
49 }
50 }
This page was automatically generated by Maven