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