home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 366 b | 17 lines |
- package borland.samples.tutorial.dataset.visualevents;
-
- public class VisualEvents_App {
-
- //Construct the application
- public VisualEvents_App() {
- VisualEvents_Frame frame = new VisualEvents_Frame();
- frame.pack();
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new VisualEvents_App();
- }
- }
-