mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
212 B
Plaintext
14 lines
212 B
Plaintext
class Client {
|
|
private Object myGen = new Object() {
|
|
private String myT;
|
|
|
|
public String getT() {
|
|
return myT;
|
|
}
|
|
|
|
public void setT(String t) {
|
|
myT = t;
|
|
}
|
|
};
|
|
}
|