KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > ejb > cmr > CityData


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package test.ejb.cmr;
5
6 /**
7  * Data object for City.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public class CityData
14    extends java.lang.Object JavaDoc
15    implements java.io.Serializable JavaDoc
16 {
17    private java.lang.Integer JavaDoc cityId;
18    private java.lang.Integer JavaDoc countryIdFk;
19    private java.lang.String JavaDoc name;
20
21   /* begin value object */
22
23   /* end value object */
24
25    public CityData()
26    {
27    }
28
29    public CityData( java.lang.Integer JavaDoc cityId,java.lang.Integer JavaDoc countryIdFk,java.lang.String JavaDoc name )
30    {
31       setCityId(cityId);
32       setCountryIdFk(countryIdFk);
33       setName(name);
34    }
35
36    public CityData( CityData otherData )
37    {
38       setCityId(otherData.getCityId());
39       setCountryIdFk(otherData.getCountryIdFk());
40       setName(otherData.getName());
41
42    }
43
44    public java.lang.Integer JavaDoc getPrimaryKey() {
45      return getCityId();
46    }
47
48    public java.lang.Integer JavaDoc getCityId()
49    {
50       return this.cityId;
51    }
52    public void setCityId( java.lang.Integer JavaDoc cityId )
53    {
54       this.cityId = cityId;
55    }
56
57    public java.lang.Integer JavaDoc getCountryIdFk()
58    {
59       return this.countryIdFk;
60    }
61    public void setCountryIdFk( java.lang.Integer JavaDoc countryIdFk )
62    {
63       this.countryIdFk = countryIdFk;
64    }
65
66    public java.lang.String JavaDoc getName()
67    {
68       return this.name;
69    }
70    public void setName( java.lang.String JavaDoc name )
71    {
72       this.name = name;
73    }
74
75    public String JavaDoc toString()
76    {
77       StringBuffer JavaDoc str = new StringBuffer JavaDoc("{");
78
79       str.append("cityId=" + getCityId() + " " + "countryIdFk=" + getCountryIdFk() + " " + "name=" + getName());
80       str.append('}');
81
82       return(str.toString());
83    }
84
85    public boolean equals( Object JavaDoc pOther )
86    {
87       if( pOther instanceof CityData )
88       {
89          CityData lTest = (CityData) pOther;
90          boolean lEquals = true;
91
92          if( this.cityId == null )
93          {
94             lEquals = lEquals && ( lTest.cityId == null );
95          }
96          else
97          {
98             lEquals = lEquals && this.cityId.equals( lTest.cityId );
99          }
100          if( this.countryIdFk == null )
101          {
102             lEquals = lEquals && ( lTest.countryIdFk == null );
103          }
104          else
105          {
106             lEquals = lEquals && this.countryIdFk.equals( lTest.countryIdFk );
107          }
108          if( this.name == null )
109          {
110             lEquals = lEquals && ( lTest.name == null );
111          }
112          else
113          {
114             lEquals = lEquals && this.name.equals( lTest.name );
115          }
116
117          return lEquals;
118       }
119       else
120       {
121          return false;
122       }
123    }
124
125    public int hashCode()
126    {
127       int result = 17;
128
129       result = 37*result + ((this.cityId != null) ? this.cityId.hashCode() : 0);
130
131       result = 37*result + ((this.countryIdFk != null) ? this.countryIdFk.hashCode() : 0);
132
133       result = 37*result + ((this.name != null) ? this.name.hashCode() : 0);
134
135       return result;
136    }
137
138 }
139
Popular Tags