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

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