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