home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Lookup_App.java < prev    next >
Text File  |  1997-07-03  |  332b  |  18 lines

  1. package borland.samples.tutorial.dataset.lookup;
  2.  
  3. public class Lookup_App {
  4.  
  5.   //Construct the application
  6.   public Lookup_App() {
  7.     Lookup_Frame frame = new Lookup_Frame();
  8.     frame.pack();
  9.     frame.setVisible(true);
  10.   }
  11.  
  12.   //Main method
  13.   static public void main(String[] args) {
  14.     new Lookup_App();
  15.   }
  16. }
  17.  
  18.