mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
14 lines
170 B
Java
14 lines
170 B
Java
import java.util.List;
|
|
|
|
class Foo implements Bar {
|
|
methW<caret>
|
|
|
|
|
|
}
|
|
|
|
interface Bar {
|
|
<K> void methodWithTypeParam(K k);
|
|
void methodWithGenerics(List<String> k);
|
|
}
|
|
|