FileDocCategorySizeDatePackage
SimpleApplet.javaAPI DocExample911Mon Nov 04 12:39:40 GMT 2002com.wiverson.macosbook.webdelivery

SimpleApplet

public class SimpleApplet extends JApplet

Fields Summary
private JButton
launchButton
Constructors Summary
public SimpleApplet()
Creates new form SimpleApplet

        launchButton = new javax.swing.JButton();

        launchButton.setText("Launch SimpleEdit");
        launchButton.addActionListener(new java.awt.event.ActionListener()
        {
            public void actionPerformed(java.awt.event.ActionEvent evt)
            {
                com.wiverson.macosbook.SimpleEdit.main(null);
            }
        });

        getContentPane().add(launchButton, java.awt.BorderLayout.CENTER);
    
Methods Summary
private voidinitComponents()