1 /*
2 * Created on Oct 22, 2003
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package portaview.model;
8
9 /***
10 * The basic domain object that contains a name.
11 * @author William Lee
12 */
13 public class NameModel extends DomainModel
14 {
15 private String name = null;
16
17 public NameModel(String name)
18 {
19 this.name = name;
20 }
21
22 /***
23 * @return the name of this domain object.
24 */
25 public String getName()
26 {
27 return name;
28 }
29
30 /***
31 * Sets the name of this domain object.
32 * @param string name of the object.
33 */
34 public void setName(String string)
35 {
36 name = string;
37 }
38
39 }
This page was automatically generated by Maven