Home | History | Annotate | Download | only in export

Lines Matching refs:composite

32 import org.eclipse.swt.widgets.Composite;
62 public void createControl(Composite parent) {
63 Composite composite = new Composite(parent, SWT.NULL);
64 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
66 composite.setLayout(gl);
70 mUseExistingKeystore = new Button(composite, SWT.RADIO);
76 mCreateKeystore = new Button(composite, SWT.RADIO);
81 new Label(composite, SWT.NONE).setText("Location:");
82 mKeystore = new Text(composite, SWT.BORDER);
84 final Button browseButton = new Button(composite, SWT.PUSH);
105 new Label(composite, SWT.NONE).setText("Password:");
106 mKeystorePassword = new Text(composite, SWT.BORDER | SWT.PASSWORD);
109 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData());
112 mConfirmLabel = new Label(composite, SWT.NONE);
114 mKeystorePassword2 = new Text(composite, SWT.BORDER | SWT.PASSWORD);
117 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData());
124 setControl(composite);