home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-15 | 611 b | 24 lines |
- package borland.samples.tutorial.dataset.framenoschema;
-
- public class framenoschemaApplication1 {
- boolean packFrame = false;
-
- //Construct the application
- public framenoschemaApplication1() {
- framenoschemaFrame1 frame = new framenoschemaFrame1();
- //Pack frames that have useful preferred size info, e.g. from their layout
- //Validate frames that have preset sizes
- if (packFrame)
- frame.pack();
- else
- frame.validate();
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new framenoschemaApplication1();
- }
- }
-
-