Example usage for java.applet Applet subclass-usage

List of usage examples for java.applet Applet subclass-usage

Introduction

In this page you can find the example usage for java.applet Applet subclass-usage.

Usage

From source file com.github.znwabudike.androidphonedatabase.Main.java

public class Main extends Applet {
    String commonName = "SPH710";

    private HtmlParser p;

    /**

From source file BBPApplet.java

public class BBPApplet extends Applet implements ControllerListener {

    /***************************************************************************
     * Object to play the media. Only attribute that the Applet really needs.
     **************************************************************************/
    protected Player player;

From source file TimedPApplet.java

public class TimedPApplet extends Applet implements ControllerListener {

    /***************************************************************************
     * Object to play the media. Only attribute that the Applet really needs.
     **************************************************************************/
    protected Player player;

From source file RedGreenGirl.java

public class RedGreenGirl extends Applet {

    protected Canvas3D c1 = new Canvas3D(SimpleUniverse.getPreferredConfiguration());
    // private Canvas3D c2 = new Canvas3D(SimpleUniverse.getPreferredConfiguration());
    private static MainFrame mf;
    protected SimpleUniverse u = null;

From source file RedGreenGriffin.java

public class RedGreenGriffin extends Applet {

    protected Canvas3D c1 = new Canvas3D(SimpleUniverse.getPreferredConfiguration());

    // private Canvas3D c2 = new
    // Canvas3D(SimpleUniverse.getPreferredConfiguration());

From source file ControlQueryPApplet.java

public class ControlQueryPApplet extends Applet implements ControllerListener {

    /***************************************************************************
     * Object to play the media. Only attribute that the Applet really needs.
     **************************************************************************/
    protected Player player;

From source file AppletMenuBarDemo.java

public class AppletMenuBarDemo extends Applet {
    public void init() {
        AppletMenuBar menubar = new AppletMenuBar();
        menubar.setForeground(Color.black);
        menubar.setHighlightColor(Color.red);
        menubar.setFont(new Font("helvetica", Font.BOLD, 12));

From source file com.peter.vaadin.components.others.applet.vaadin.AbstractVaadinApplet.java

/**
 * This class can be used as base to implement Java Applets that integrate to
 * Vaadin application.
 *
 * The class implements thread that polls for JavaScript (GWT) calls of
 * {@link #execute(String)} and {@link #execute(String, Object[])} methods. This

From source file org.vaadin.applet.AbstractVaadinApplet.java

/**
 * This class can be used as base to implement Java Applets that integrate to
 * Vaadin application.
 *
 * The class implements thread that polls for JavaScript (GWT) calls of
 * {@link #execute(String)} and {@link #execute(String, Object[])} methods. This

From source file Whistle.java

/**
* This applet is a simple button that plays an audio clip when
* pushed.
*
* @author  Bill Venners
*/