mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
- make it create template for both getter and setter; - make it work with type parameter guesser; - add tests!
16 lines
218 B
Java
16 lines
218 B
Java
// "Create property" "true"
|
|
class Calculator {
|
|
int i;
|
|
public void printError() {
|
|
setI(0);
|
|
}
|
|
|
|
public void setI(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
}
|