Applet1cFrame (2)


Display page for Applet1c at www.BruceEckel.comApplet1c.java








No Java 2 support for APPLET!!



//: c13:Applet1c.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// An application and an applet.
// <applet code=Applet1c width=100 height=50>
// </applet>
import javax.swing.*;
import java.awt.*;
import com.bruceeckel.swing.*;

public class Applet1c extends JApplet {
public void init() {
getContentPane().add(new JLabel("Applet!"));
}
// A main() for the application:
public static void main(String[] args) {
JApplet applet = new Applet1c();
JFrame frame = new JFrame("Applet1c");
// To close the application:
Console.setupClosing(frame);
frame.getContentPane().add(applet);
frame.setSize(100,50);
applet.init();
applet.start();
frame.setVisible(true);
}
} ///:~


Wyszukiwarka

Podobne podstrony:
Applety README
applet
applet
applet1dframe
applet
applet1bframe
Applet
java applet AppletStub
applet1bframe
AppletContext
Prosta gra logiczna applet Javy
appletviewer
new applet HOWTO
applet (5)
applet

więcej podobnych podstron