mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
17 lines
221 B
Java
17 lines
221 B
Java
// "Create property" "true"
|
|
class Calculator {
|
|
int i;
|
|
|
|
public void printError() {
|
|
setI(0);
|
|
}
|
|
|
|
public void setI(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
}
|