home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 332 b | 18 lines |
- package borland.samples.tutorial.dataset.lookup;
-
- public class Lookup_App {
-
- //Construct the application
- public Lookup_App() {
- Lookup_Frame frame = new Lookup_Frame();
- frame.pack();
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new Lookup_App();
- }
- }
-
-