Home | History | Annotate | Download | only in newproject

Lines Matching refs:composite

20 import org.eclipse.swt.widgets.Composite;
47 public Composite createControl(Composite composite) {
48 Group workingSetGroup = new Group(composite, SWT.NONE);
49 workingSetGroup.setFont(composite.getFont());
92 * Finds the first button of style Checkbox in the given parent composite.
95 private Button findCheckbox(Composite parent) {
99 } else if (control instanceof Composite) {
100 Button found = findCheckbox((Composite) control);