home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / java / InnerButton.java < prev    next >
Encoding:
Java Source  |  1999-11-27  |  1.0 KB  |  35 lines

  1. /*
  2.  * @(#)InnerButton.java    1.0 99/11/27
  3.  * 
  4.  * Copyright (c) 1999, David Griffiths. All Rights Reserved.
  5.  * 
  6.  * This software is the proprietary information of David Griffiths.
  7.  * This source code may not be published or redistributed without the 
  8.  * express permission of the author. 
  9.  * 
  10.  * THE AUTHOR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY 
  11.  * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  12.  * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  13.  * PURPOSE, OR NON-INFRINGEMENT. THE AUTHOR SHALL NOT BE LIABLE FOR ANY DAMAGES
  14.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  15.  * THIS SOFTWARE OR ITS DERIVATIVES.
  16.  * 
  17.  */
  18.  
  19. import java.awt.*;
  20. import java.applet.*;
  21. import com.sun.java.swing.*;
  22.  
  23. /**
  24.  * An example of one Swing button containing another Swing button
  25.  */
  26. public class InnerButton extends JApplet {
  27.     public void init() {
  28.         JButton btnOuter = new JButton("This is a Swing Button");
  29.         getContentPane().add(btnOuter);
  30.         btnOuter.add(new JButton("Inner button"));
  31.     }
  32. }
  33.  
  34.  
  35.