mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
12 lines
282 B
Java
12 lines
282 B
Java
class Gen {
|
|
protected Gen clone() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class X2 extends Gen {
|
|
@Override
|
|
protected Gen clone() {
|
|
<caret><selection>return super.clone(); //To change body of overridden methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |