Setting Apple System Properties from a Java 1.1 applet

    Here is the source code for the Java 2 version of the Java 1.1 Apple Properties applet.  I am not set up to generate the Java 2 class file, but if someone sends a copy I will run it from this page.  Apparently this applet fails to set the apple.awt.showGrowBox System Property, even though the simple Java 2 System.setProperty method is used instead of the Reflection code needed for the Java 1.1 applet. 

    For another Java 1.1 approach to setting System properties see this link.

    If you have any insights, workarounds or comments about this test page please contact Mickey Segal.  A listing of  many Java resources is at this link.

Source code (for Java 2 version not yet running as an applet on this page):

public class apple_properties

public void init()
{
    System.setProperty("apple.awt.showGrowBox", "true");
    Frame frame = new java.awt.Frame("A Frame");
    Label label = new Label("A Label");
    frame.setSize(100,100);
    frame.add(label);
    frame.validate();
    frame.setVisible(true);
}

public void paint(Graphics g)
{
    g.drawString("A simple frame with a label should pop up", 10 , 20);
}
} // END OF Class apple_properties