mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
13 lines
290 B
Java
13 lines
290 B
Java
// "Create Constructor In 'Base'" "true"
|
|
class Base {
|
|
public Base(int i, Object o) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
|
|
public class Derived extends Base {
|
|
Derived () {
|
|
super (1, new Object ());
|
|
}
|
|
}
|