}
public static void main(String... args) {
Display display = new Display ();
Shell shell = new Shell (display);
Composite c1 = new Composite(shell,SWT.BORDER);
Composite c2 = new Composite(shell,SWT.BORDER);
//createVerticalSash(10,50,shell,c1,c2);
createHorizontalSash(10,50,shell,c1,c2);
shell.open ();
while (!shell.isDisposed ()) {
if (!display.readAndDispatch ()) display.sleep ();
}
display.dispose ();
}