Mega Code Archive

 
Categories / Java / Swing JFC
 

Putting buttons on an applet

// : c14:Button1.java // Putting buttons on an applet. // <applet code=Button1 width=200 height=50></applet> // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. import java.awt.Container; import java.awt.FlowLayout; import javax.swing.JApplet; import javax.swing.JButton; import javax.swing.JFrame; public class Button1 extends JApplet {   private JButton b1 = new JButton("Button 1"), b2 = new JButton("Button 2");   public void init() {     Container cp = getContentPane();     cp.setLayout(new FlowLayout());     cp.add(b1);     cp.add(b2);   }   public static void main(String[] args) {     run(new Button1(), 200, 50);   }   public static void run(JApplet applet, int width, int height) {     JFrame frame = new JFrame();     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     frame.getContentPane().add(applet);     frame.setSize(width, height);     applet.init();     applet.start();     frame.setVisible(true);   } } ///:~