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 TextureMapping.java

/**
 * !Diese Klasse wurde fur das Laden uber ein JAR-Archiv und Applet welches ein
 * JAR - Archiv nutzt angepasst Um das Programm als einfache Applikation uber
 * einen class-File laufen zu lassen bitte auf den Code zum Einladen der Textur
 * im Tutorial zuruckgreifen!
 */

From source file MainClass.java

public class MainClass extends Applet {
    Image i, j;

    public void init() {
        i = getImage(getDocumentBase(), "rosey.jpg");
        j = createImage(new FilteredImageSource(i.getSource(), new DynamicFilter(250, 5, Color.yellow)));

From source file BouncingCircle.java

/** An applet that displays a simple animation */
public class BouncingCircle extends Applet implements Runnable {
    int x = 150, y = 50, r = 50; // Position and radius of the circle

    int dx = 11, dy = 7; // Trajectory of circle

From source file MainClass.java

public class MainClass extends Applet {
    Image i, j;

    public void init() {
        i = getImage(getDocumentBase(), "rosey.jpg");
        MediaTracker mt = new MediaTracker(this);

From source file GrabandFadewithRasters.java

/**
 * GrabandFadewithRasters.java -- displays provided image and then slowly fades
 * to black
 */
public class GrabandFadewithRasters extends Applet {
    private Image originalImage;

From source file ColorGradient.java

/** An applet that demonstrates the Color class */
public class ColorGradient extends Applet {
    Color startColor, endColor; // Start and end color of the gradient

    Font bigFont; // A font we'll use

From source file org.wikipathways.applet.Preloader.java

public class Preloader extends Applet {
    public void init() {
        /* Don't preload jars for now (we don't want the certificate
         * dialog to popup!
        System.out.println("== Preloader started ==");
        //Do nothing, just called to download the jars and start the JVM!

From source file ColorScribble.java

/**
 * A version of the Scribble applet that reads two applet parameters to set the
 * foreground and background colors. It also returns information about itself
 * when queried.
 */
public class ColorScribble extends Applet {

From source file Licht.java

public class Licht extends Applet {

    /**
     * init Methoden fur die Darstellung als Applet
     */
    public void init() {

From source file MainClass.java

public class MainClass extends Applet {

    org.eclipse.swt.widgets.Display display;

    org.eclipse.swt.widgets.Shell swtParent;