FileDocCategorySizeDatePackage
ChildShellExample2.javaAPI DocExample509Sat Oct 30 19:42:42 BST 2004None

ChildShellExample2

public class ChildShellExample2 extends Object

Fields Summary
Display
d
Constructors Summary
ChildShellExample2()

        
            
        Shell s = new Shell(d);
        s.setSize(500,500);
        s.open();
        ChildShell cs1 = new ChildShell(s);
        ChildShell cs2 = new ChildShell(s);
        ChildShell cs3 = new ChildShell(s);
        while(!s.isDisposed()){
            if(!d.readAndDispatch())
                d.sleep();
        }
        d.dispose();

    
Methods Summary