home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 802 b | 28 lines |
- package borland.samples.tutorial.dataset.dbsample;
-
- import java.awt.*;
-
- public class dbSampleApp {
-
- //Construct the application
- public dbSampleApp() {
- dbSampleFrame frame = new dbSampleFrame();
- frame.pack();
- //Center the window
- Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
- Dimension frameSize = frame.getPreferredSize();
- if (frameSize.height > screenSize.height)
- frameSize.height = screenSize.height;
- if (frameSize.width > screenSize.width)
- frameSize.width = screenSize.width;
- frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new dbSampleApp();
- }
- }
-
-