Applet1c.java Source code

Java tutorial

Introduction

Here is the source code for Applet1c.java

Source

// : c14:Applet1c.java
// An application and an applet.
// <applet code=Applet1c width=100 height=50></applet>
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import javax.swing.JApplet;
import javax.swing.JFrame;
import javax.swing.JLabel;

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:
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(applet);
        frame.setSize(100, 50);
        applet.init();
        applet.start();
        frame.setVisible(true);
    }
} ///:~