Example usage for javax.swing JApplet subclass-usage

List of usage examples for javax.swing JApplet subclass-usage

Introduction

In this page you can find the example usage for javax.swing JApplet subclass-usage.

Usage

From source file TicTacToe.java

public class TicTacToe extends JApplet {
    private JTextField rows = new JTextField("3"), cols = new JTextField("3");

    private static final int BLANK = 0, XX = 1, OO = 2;

    class ToeDialog extends JDialog {

From source file ShapeMover.java

public class ShapeMover extends JApplet {
    static protected Label label = new Label("Drag rectangle around within the area");

    public void init() {

        getContentPane().setLayout(new BorderLayout());

From source file GraphingProject.TheJApplet.java

public class TheJApplet extends javax.swing.JApplet {

    public TheJApplet() {

        super();
        final CategoryDataset dataset = createDataset();

From source file TrackEvent.java

public class TrackEvent extends JApplet {
    private HashMap h = new HashMap();

    private String[] event = { "focusGained", "focusLost", "keyPressed", "keyReleased", "keyTyped", "mouseClicked",
            "mouseEntered", "mouseExited", "mousePressed", "mouseReleased", "mouseDragged", "mouseMoved" };

From source file Cycloid.Firstex.java

/**
 *
 * @author ??
 */
public class Firstex extends javax.swing.JApplet {

From source file Transistor.Transistor.java

/**
 *
 * @author Geonmo
 */
public class Transistor extends javax.swing.JApplet {

From source file SwingMenus.java

public class SwingMenus extends JApplet {
    private String[] flavors = { "Chocolate", "Strawberry", "Vanilla Fudge Swirl", "Mint Chip",
            "Mocha Almond Fudge", "Rum Raisin", "Praline Cream", "Mud Pie" };

    private JTextField t = new JTextField("No flavor", 30);

From source file MyDialog.java

public class Dialogs extends JApplet {
    private JButton b1 = new JButton("Dialog Box");

    private MyDialog dlg = new MyDialog(null);

    public void init() {

From source file org.synesthesia.view.SpringGraphVisualization.java

/**
 * Demonstrates the use of images on graph edge labels.
 * 
 * @author Tom Nelson
 * 
 */

From source file ClipImage.java

public class ClipImage extends JApplet implements Runnable {

    private Image img;

    private final double OINC[] = { 5.0, 3.0 };