FileDocCategorySizeDatePackage
FillLayoutExample.javaAPI DocExample694Sun Oct 31 08:38:00 GMT 2004None

FillLayoutExample

public class FillLayoutExample extends Object

Fields Summary
Display
d
Shell
s
Constructors Summary
FillLayoutExample()

        d = new Display();
        s = new Shell(d);
        s.setSize(250,250);
        s.setImage(new Image(d, "c:\\icons\\JavaCup.ico"));
        s.setText("A FillLayout Example");
        s.setLayout(new FillLayout());
        final Text t = new Text(s, SWT.MULTI | SWT.BORDER | SWT.WRAP);
        s.open();
        while(!s.isDisposed()){
            if(!d.readAndDispatch())
                d.sleep();
        }
        d.dispose();
    
Methods Summary