mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
test++
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test extends ArrayList {
|
||||
public Test(int initialCapacity) {
|
||||
super(initialCapacity);
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class TestSubclass extends Test {
|
||||
public TestSubclass(int capacity) {
|
||||
super(capacity);
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test extends ArrayList {
|
||||
public Test(int capacity) {
|
||||
super(capacity);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user