mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
384 B
Plaintext
19 lines
384 B
Plaintext
class InlineMethodTest {
|
|
public static InlineMethodTest createInstance() {
|
|
return new InlineMethodTest("hello world", 0);
|
|
}
|
|
|
|
protected InlineMethodTest() {
|
|
this("hello world", 0);
|
|
}
|
|
|
|
public InlineMethodTest(String text, int i) {
|
|
}
|
|
}
|
|
|
|
class Derived extends InlineMethodTest {
|
|
public Derived(int i) {
|
|
super("hello world", i);
|
|
}
|
|
}
|