- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
public class Statuses {
protected List<String> id;
protected List<String> name;
public List<String> getId() {
if (id == null) {
id = new ArrayList<String>();
}
return this.id;
}
public List<String> getName() {
if (name == null) {
name = new ArrayList<String>();
}
return this.name;
}
}
Statuses statuses = new Statuses();
List<String> statusesString = statuses.getId();
SmackMyBitchUp 20.09.2011 12:36 # 0
roman-kashitsyn 20.09.2011 12:45 # +1
Art 20.09.2011 13:37 # 0
roman-kashitsyn 20.09.2011 13:44 # 0
-A- 24.08.2021 20:44 # 0