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