FileDocCategorySizeDatePackage
CompositeShellExample.javaAPI DocExample711Sun Oct 31 08:43:24 GMT 2004None

CompositeShellExample

public class CompositeShellExample extends Object

Fields Summary
Display
d
Shell
s
Constructors Summary
CompositeShellExample()

        d = new Display();
        s = new Shell(d);
        s.setSize(500,500);
        s.setImage(new Image(d, "c:\\icons\\JavaCup.ico"));
        s.setText("A Shell Composite Example");
        s.setLayout(new FillLayout());
        final TextPaneComposite tpc = new TextPaneComposite(s);
        s.open();
        while(!s.isDisposed()){
            if(!d.readAndDispatch())
                d.sleep();
        }
        d.dispose();
    
Methods Summary