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