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