blob: 847a358b4e0e9a39c6803cfbbf4cb7dbc8e97ac2 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.compatibility;
2
3
4public class GenericType {
5 public GenericType(Class<Object> class1) {
6 // TODO Auto-generated constructor stub
7 }
8
9 final static GenericType EMPTY[] = new GenericType[0];
10 Scope reference;
11 GenericType[] a;
12 GenericType[] b;
13 int array;
14
15 Scope scope;
16
17 static public class GenericWildcard extends GenericType{
18
19 public GenericWildcard(Class<Object> class1) {
20 super(class1);
21 // TODO Auto-generated constructor stub
22 }
23
24 }
25
26 static public class GenericArray extends GenericType {
27
28 public GenericArray(Class<Object> class1) {
29 super(class1);
30 // TODO Auto-generated constructor stub
31 }
32
33 }
34
35
36
37}