import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.*;
public class DialogExample extends Dialog {
DialogExample(Shell parent)
{
super(parent);
}
public String open()
{
Shell parent = getParent();
Shell dialog = new Shell(parent, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
dialog.setSize(100,100);
dialog.setText( |