mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 10:51:25 +07:00
moving tests
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user