mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
13 lines
301 B
Java
13 lines
301 B
Java
// "Create Method 'get'" "true"
|
|
class W<T> {
|
|
public T get(T s) {
|
|
<selection>return null; //To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
|
|
class C {
|
|
void foo () {
|
|
W<String> w = new W<String>();
|
|
String s = w.get("");
|
|
}
|
|
} |