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

View File

@@ -0,0 +1,7 @@
public class Test {
int a;
public Test(int a) {
this.a = a;
}
}

View File

@@ -0,0 +1,7 @@
public class TestSubclass extends Test {
int b;
public TestSubclass(int a, int b) {
super(a);
this.b = b;
}
}

View File

@@ -0,0 +1,8 @@
public class Test {
int a;
int b;
public Test(int a, int b) {
this.a = a;
this.b = b;
}
}