home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / VisualEvents_App.java < prev    next >
Encoding:
Java Source  |  1997-07-03  |  366 b   |  17 lines

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