@@ -45,9 +45,7 @@ public class Person extends Resource implements Serializable {
4545 private Bitmap photo ;
4646
4747 /**
48- *
49- * @return
50- * The names
48+ * @return The names
5149 */
5250 public List <PersonName > getNames () {
5351 return names ;
@@ -62,73 +60,57 @@ public PersonName getName() {
6260 }
6361
6462 /**
65- *
66- * @param names
67- * The names
63+ * @param names The names
6864 */
6965 public void setNames (List <PersonName > names ) {
7066 this .names = names ;
7167 }
7268
7369 /**
74- *
75- * @return
76- * The gender
70+ * @return The gender
7771 */
7872 public String getGender () {
7973 return gender ;
8074 }
8175
8276 /**
83- *
84- * @param gender
85- * The gender
77+ * @param gender The gender
8678 */
8779 public void setGender (String gender ) {
8880 this .gender = gender ;
8981 }
9082
9183 /**
92- *
93- * @return
94- * The birthdate
84+ * @return The birthdate
9585 */
9686 public String getBirthdate () {
9787 return birthdate ;
9888 }
9989
10090 /**
101- *
102- * @param birthdate
103- * The birthdate
91+ * @param birthdate The birthdate
10492 */
10593 public void setBirthdate (String birthdate ) {
10694 this .birthdate = birthdate ;
10795 }
10896
10997 /**
110- *
111- * @return
112- * The birthdateEstimated
98+ * @return The birthdateEstimated
11399 */
114100 public boolean getBirthdateEstimated () {
115101 return birthdateEstimated ;
116102 }
117103
118104 /**
119- *
120- * @param birthdateEstimated
121- * The birthdate
105+ * @param birthdateEstimated The birthdate
122106 */
123107 public void setBirthdateEstimated (boolean birthdateEstimated ) {
124108 this .birthdateEstimated = birthdateEstimated ;
125109 }
126110
127111
128112 /**
129- *
130- * @return
131- * The addresses
113+ * @return The addresses
132114 */
133115 public List <PersonAddress > getAddresses () {
134116 return addresses ;
@@ -143,27 +125,21 @@ public PersonAddress getAddress() {
143125 }
144126
145127 /**
146- *
147- * @param addresses
148- * The addresses
128+ * @param addresses The addresses
149129 */
150130 public void setAddresses (List <PersonAddress > addresses ) {
151131 this .addresses = addresses ;
152132 }
153133
154134 /**
155- *
156- * @return
157- * The attributes
135+ * @return The attributes
158136 */
159137 public List <PersonAttribute > getAttributes () {
160138 return attributes ;
161139 }
162140
163141 /**
164- *
165- * @param attributes
166- * The attributes
142+ * @param attributes The attributes
167143 */
168144 public void setAttributes (List <PersonAttribute > attributes ) {
169145 this .attributes = attributes ;
0 commit comments