Home | History | Annotate | Download | only in export

Lines Matching refs:composite

32 import org.eclipse.swt.widgets.Composite;
63 public void createControl(Composite parent) {
64 Composite composite = new Composite(parent, SWT.NULL);
65 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
67 composite.setLayout(gl);
71 mUseExistingKeystore = new Button(composite, SWT.RADIO);
77 mCreateKeystore = new Button(composite, SWT.RADIO);
82 new Label(composite, SWT.NONE).setText("Location:");
83 mKeystore = new Text(composite, SWT.BORDER);
85 final Button browseButton = new Button(composite, SWT.PUSH);
106 new Label(composite, SWT.NONE).setText("Password:");
107 mKeystorePassword = new Text(composite, SWT.BORDER | SWT.PASSWORD);
110 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData());
113 mConfirmLabel = new Label(composite, SWT.NONE);
115 mKeystorePassword2 = new Text(composite, SWT.BORDER | SWT.PASSWORD);
118 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData());
125 setControl(composite);