Home | History | Annotate | Download | only in newxmlfile

Lines Matching refs:composite

79 import org.eclipse.swt.widgets.Composite;
438 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
441 public void createControl(Composite parent) {
444 Composite composite = new Composite(parent, SWT.NULL);
445 composite.setLayout(new GridLayout(2, false /*makeColumnsEqualWidth*/));
446 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
449 Label typeLabel = new Label(composite, SWT.NONE);
452 mTypeCombo = new Combo(composite, SWT.DROP_DOWN | SWT.READ_ONLY);
469 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL);
477 Label projectLabel = new Label(composite, SWT.NONE);
484 mProjectButton = new ProjectCombo(helper, composite, mValues.project);
498 Label fileLabel = new Label(composite, SWT.NONE);
502 mFileNameTextField = new Text(composite, SWT.BORDER);
513 Label rootSeparator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL);
521 Label rootLabel = new Label(composite, SWT.NONE);
523 new Label(composite, SWT.NONE);
525 mRootTableViewer = new TableViewer(composite, SWT.BORDER | SWT.FULL_SELECTION);
531 setControl(composite);