mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
235 B
Java
17 lines
235 B
Java
// "Create property" "true-preview"
|
|
class Calculator {
|
|
private int i;
|
|
|
|
public void printError() {
|
|
setI(0);
|
|
}
|
|
|
|
public void setI(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
}
|