mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 14:26:37 +07:00
11 lines
241 B
Java
11 lines
241 B
Java
class B {
|
|
public final A<String> myDelegate = new A<String>();
|
|
|
|
public List<? extends String> method1() {
|
|
return myDelegate.method1();
|
|
}
|
|
|
|
public String method2(String s) {
|
|
return myDelegate.method2(s);
|
|
}
|
|
} |