This commit is contained in:
Dmitry Jemerov
2009-09-10 20:33:13 +04:00
parent 571ab0fc93
commit 48a701e11e
24 changed files with 9 additions and 3 deletions
@@ -0,0 +1,7 @@
public class Test {
int a;
public Test(int a) {
this.a = a;
}
}
@@ -0,0 +1,7 @@
public class TestSubclass extends Test {
int b;
public TestSubclass(int a, int b) {
super(a);
this.b = b;
}
}