mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
17 lines
226 B
Java
17 lines
226 B
Java
// "Create property" "true-preview"
|
|
class Calculator {
|
|
private Object i;
|
|
|
|
{
|
|
setI(() -> {});
|
|
}
|
|
|
|
public void setI(Object i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public Object getI() {
|
|
return i;
|
|
}
|
|
}
|