samples/incompatibilities/src-wildimport/org/apidesign/wildimport/MyPanel.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
parent 388 4814f04f6c33
permissions -rw-r--r--
Using HTTPS to download the libraries
jtulach@406
     1
 package org.apidesign.wildimport;
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@406
     7
/** Could be compiled on JDK 1.1, before java.util.List was created */
jtulach@388
     8
public class MyPanel extends Panel {
jtulach@388
     9
    List visualComponent = new List();
jtulach@388
    10
    Vector items = new Vector();
jtulach@136
    11
}        
jtulach@136
    12
// END: theory.wildimport