Files
2022-11-02 12:49:31 +00:00

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;
}
}