Renamed test data folder
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
public class Test {
|
||||
private String id;
|
||||
private String name;
|
||||
private int myAge;
|
||||
|
||||
public Test(String id, String name, int anAge) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
myAge = anAge;
|
||||
System.out.println(anAge);
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public int getAge() {
|
||||
return myAge;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user