mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 23:37:04 +07:00
11 lines
264 B
Java
11 lines
264 B
Java
interface Foo<T> {
|
|
void run(T t, int myInt);
|
|
}
|
|
|
|
public class A implements Foo<String> {
|
|
@Override
|
|
public void run(String s, int myInt) {
|
|
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|