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