Home | History | Annotate | Download | only in resources
      1 import java.applet.Applet;
      2 
      3 public class TestApplet extends Applet {
      4     public static int MAGIC_NUMBER = 1;
      5     public int field;
      6 
      7     public void init()
      8     {
      9         field = MAGIC_NUMBER;
     10     }
     11 
     12     public int method()
     13     {
     14         return MAGIC_NUMBER;
     15     }
     16 }