mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
235 B
Java
11 lines
235 B
Java
abstract class IX {
|
|
void foo(){}
|
|
}
|
|
|
|
class XXC extends IX {
|
|
@Override
|
|
void foo() {
|
|
<caret><selection>super.foo(); //To change body of overridden methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|