mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
11 lines
239 B
Java
11 lines
239 B
Java
interface A<T> {
|
|
void m(T t) default { }
|
|
}
|
|
|
|
class MyClass<T> implements A<T> {
|
|
@Override
|
|
public void m(T t) {
|
|
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|