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

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