mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
12 lines
203 B
Java
12 lines
203 B
Java
public class C {
|
|
private String x = "";
|
|
|
|
public String getX() {
|
|
return x;
|
|
}
|
|
|
|
public void setX(String x) {
|
|
System.out.println("setter invoked");
|
|
this.x = x;
|
|
}
|
|
} |