home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 480 b | 27 lines |
- package borland.samples.tutorial.dataset.locator;
-
-
- // Application Class
- public class Locator
- {
- // main application Frame
- LocatorFrame frame1;
-
- void init() throws Exception {
- frame1 = new LocatorFrame();
- frame1.pack();
- frame1.setVisible(true);
- }
-
- public static void main(String args[]) {
- Locator app = new Locator();
- try {
- app.init();
- }
- catch (Exception x) {
- // handle exceptions here
- }
- }
- }
-
-