Compare commits
4 Commits
c10de35ca2
...
d9860497df
Author | SHA1 | Date | |
---|---|---|---|
|
d9860497df | ||
|
fdffc11580 | ||
|
4dba867f9e | ||
|
06caf0ff66 |
@ -1,8 +1,9 @@
|
|||||||
class Box<A> {
|
public class Box<A> {
|
||||||
|
|
||||||
A a;
|
A a;
|
||||||
|
|
||||||
|
public Box() { }
|
||||||
public Box(A a) {
|
public Box(A a) {
|
||||||
this.a = a;
|
//this.a = a;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,3 +0,0 @@
|
|||||||
class Box<A> {
|
|
||||||
void m(A a) { }
|
|
||||||
}
|
|
@ -67,6 +67,7 @@ public class AllgemeinTest {
|
|||||||
//String className = "List";
|
//String className = "List";
|
||||||
//String className = "Box";
|
//String className = "Box";
|
||||||
//String className = "GenBox";
|
//String className = "GenBox";
|
||||||
|
//String className = "InnerInf";
|
||||||
String className = "Foo";
|
String className = "Foo";
|
||||||
//PL 2019-10-24: genutzt fuer unterschiedliche Tests
|
//PL 2019-10-24: genutzt fuer unterschiedliche Tests
|
||||||
path = System.getProperty("user.dir")+"/resources/AllgemeinTest/" + className + ".jav";
|
path = System.getProperty("user.dir")+"/resources/AllgemeinTest/" + className + ".jav";
|
||||||
|
Loading…
Reference in New Issue
Block a user