KT-5492 J2K: convert field with getter/setter to property

#KT-5492 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-14 17:33:20 +04:00
parent 129c592581
commit a84b32af98
45 changed files with 691 additions and 139 deletions
@@ -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;
}
}