samples/incompatibilities/src-wildimport/org/apidesign/wildimport/VList.java
changeset 136 324d01de8a3a
child 377 d65e561f94d7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/incompatibilities/src-wildimport/org/apidesign/wildimport/VList.java	Sat Jun 14 09:56:58 2008 +0200
     1.3 @@ -0,0 +1,11 @@
     1.4 +package org.apidesign.wrapio;
     1.5 +
     1.6 +// BEGIN: theory.wildimport
     1.7 +import java.awt.*;
     1.8 +import java.util.*;
     1.9 +
    1.10 +/** Could be compiled on JDK 1.2, before java.util.List was created */
    1.11 +public class VList extends List {
    1.12 +    Vector v;
    1.13 +}        
    1.14 +// END: theory.wildimport