FileDocCategorySizeDatePackage
noLayout.javaAPI DocExample642Mon Mar 24 02:04:18 GMT 1997None

noLayout

public class noLayout extends Applet

Fields Summary
Constructors Summary
Methods Summary
public voidinit()

        setLayout (null);
        Button x = new Button ("Hello");
        add (x);
        x.reshape (50, 60, 50, 70);
        Button y = new Button ("World");
        add (y);
        y.reshape (100, 120, 50, 70);