home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / Metalworks.java < prev    next >
Text File  |  1998-02-26  |  2KB  |  66 lines

  1. /*
  2.  * @(#)Metalworks.java    1.2 98/02/05
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21.  
  22. import java.awt.*;
  23. import com.sun.java.swing.*;
  24. import com.sun.java.swing.border.*;
  25.  
  26.  
  27. /**
  28.   * This application is a demo of the Metal Look & Feel
  29.   *
  30.   * @version 1.2 02/05/98
  31.   * @author Steve Wilson
  32.   */
  33. public class Metalworks {
  34.  
  35.     public static void main( String[] args ) {
  36.         System.out.println("Starting Metalworks...");
  37.         try {
  38.         com.sun.java.swing.plaf.metal.MetalLookAndFeel.setCurrentTheme( new com.sun.java.swing.plaf.metal.DefaultMetalTheme());
  39.         UIManager.setLookAndFeel("com.sun.java.swing.plaf.metal.MetalLookAndFeel");
  40.     }  
  41.     catch ( UnsupportedLookAndFeelException e ) {
  42.         System.out.println ("Metal Look & Feel not supported on this platform. \nProgram Terminated");
  43.         System.exit(0);
  44.     }
  45.     catch ( IllegalAccessException e ) {
  46.         System.out.println ("Metal Look & Feel could not be accessed. \nProgram Terminated");
  47.         System.exit(0);
  48.     }
  49.     catch ( ClassNotFoundException e ) {
  50.         System.out.println ("Metal Look & Feel could not found. \nProgram Terminated");
  51.         System.exit(0);
  52.     }   
  53.     catch ( InstantiationException e ) {
  54.         System.out.println ("Metal Look & Feel could not be instantiated. \nProgram Terminated");
  55.         System.exit(0);
  56.     }
  57.     catch ( Exception e ) {
  58.         System.out.println ("Unexpected error. \nProgram Terminated");
  59.         e.printStackTrace();
  60.         System.exit(0);
  61.     }
  62.         JFrame frame = new MetalworksFrame();
  63.     frame.setVisible(true);
  64.     }
  65. }
  66.