mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
- make it create template for both getter and setter; - make it work with type parameter guesser; - add tests!
9 lines
154 B
Java
9 lines
154 B
Java
// "Create property" "false"
|
|
class Calculator {
|
|
int i;
|
|
public void printError() {
|
|
set<caret>I(0);
|
|
}
|
|
public int getI() {return i;}
|
|
}
|