compo.setLayout( layout );
final Button buttonPush = new Button( compo, SWT.PUSH );
buttonPush.setText( "A Composite ..." );
final Text text = new Text( compo, SWT.NONE );
text.setText( "is a widget container." );
shell.pack();
shell.open();
}
private void createDateTime() {
final Shell shell = new Shell( display, SWT.NO_TRIM );