root/ManualTests/resources/TestApplet.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. init
  2. method

import java.applet.Applet;

public class TestApplet extends Applet {
    public static int MAGIC_NUMBER = 1;
    public int field;
    
    public void init()
    {
        field = MAGIC_NUMBER;
    }
    
    public int method()
    {
        return MAGIC_NUMBER;
    }

/* [<][>][^][v][top][bottom][index][help] */