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

  1. /*
  2.  * @(#)SwingApplet.java    1.9 98/02/23
  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. import java.awt.*;
  22. import java.awt.event.*;
  23. import java.net.*;
  24. import java.applet.*;
  25. import com.sun.java.swing.*;
  26.  
  27. /**
  28.  * A very simple applet.
  29.  */
  30. public class SwingApplet extends JApplet {
  31.  
  32.     JButton button;
  33.  
  34.     public void init() {
  35.  
  36.     // Force SwingApplet to come up in the System L&F
  37.     String laf = UIManager.getSystemLookAndFeelClassName();
  38.     try {
  39.         UIManager.setLookAndFeel(laf);
  40.         // If you want the Cross Platform L&F instead, comment out the above line and
  41.         // uncomment the following:
  42.         // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
  43.     } catch (UnsupportedLookAndFeelException exc) {
  44.         System.err.println("Warning: UnsupportedLookAndFeel: " + laf);
  45.     } catch (Exception exc) {
  46.         System.err.println("Error loading " + laf + ": " + exc);
  47.     }
  48.  
  49.         getContentPane().setLayout(new FlowLayout());
  50.         button = new JButton("Hello, I'm a Swing Button!");
  51.         getContentPane().add(button);
  52.     }
  53.  
  54.     public void stop() {
  55.         if (button != null) {
  56.             getContentPane().remove(button);
  57.             button = null;
  58.         }
  59.     }
  60. }
  61.  
  62.  
  63.