mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
13 lines
252 B
Java
13 lines
252 B
Java
abstract class Base {
|
|
void foo(){}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
int it;
|
|
|
|
@Override
|
|
void foo() {
|
|
<caret><selection>super.foo(); //To change body of overridden methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|