samples/incompatibilities/src-wildimport/org/apidesign/wildimport/VList.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:56:58 +0200
changeset 136 324d01de8a3a
child 377 d65e561f94d7
permissions -rw-r--r--
Wild import
jtulach@136
     1
package org.apidesign.wrapio;
jtulach@136
     2
jtulach@136
     3
// BEGIN: theory.wildimport
jtulach@136
     4
import java.awt.*;
jtulach@136
     5
import java.util.*;
jtulach@136
     6
jtulach@136
     7
/** Could be compiled on JDK 1.2, before java.util.List was created */
jtulach@136
     8
public class VList extends List {
jtulach@136
     9
    Vector v;
jtulach@136
    10
}        
jtulach@136
    11
// END: theory.wildimport