home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Locator.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  57 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.tutorial.dataset.locator;
  21.       
  22. import java.awt.*;
  23. import com.sun.java.swing.UIManager;
  24.  
  25. // Application Class
  26. public class Locator
  27. {
  28.   // main application Frame
  29.   LocatorFrame frame1;
  30.  
  31.   void init() throws Exception {
  32.     frame1 = new LocatorFrame();
  33.     frame1.pack();
  34.     frame1.setVisible(true);
  35.  
  36.     //Center the window
  37.     Dimension dimScreen = Toolkit.getDefaultToolkit().getScreenSize();
  38.     Dimension dimFrame = frame1.getPreferredSize();
  39.     if(dimFrame.height > dimScreen.height) dimFrame.height = dimScreen.height;
  40.     if(dimFrame.width > dimScreen.width) dimFrame.width = dimScreen.width;
  41.     frame1.setBounds( (dimScreen.width - dimFrame.width) / 2, (dimScreen.height - dimFrame.height) / 2, dimFrame.width, dimFrame.height);
  42.   }
  43.  
  44.   public static void main(String args[]) {
  45.     Locator app = new Locator();
  46.     try {
  47.       UIManager.setLookAndFeel(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
  48.       //UIManager.setLookAndFeel(new com.sun.java.swing.plaf.motif.MotifLookAndFeel());
  49.       app.init();
  50.     }
  51.     catch (Exception x) {
  52.       // handle exceptions here
  53.     }
  54.   }
  55. }
  56.  
  57.