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

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