mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
17 lines
244 B
Java
17 lines
244 B
Java
class Base {
|
|
|
|
String[] items;
|
|
|
|
public Base(String ... items) throws Exception {
|
|
this.items = items;
|
|
}
|
|
|
|
public Base() {
|
|
this.items = null;
|
|
}
|
|
}
|
|
|
|
class Derived extends Base {
|
|
public Derived() {}
|
|
}
|
|
class Derived1 extends Base {} |