public Control createControl(Composite parent) { Composite c = new Composite(parent, SWT.NONE); GridLayout g = new GridLayout(); c.setLayout(g); Control pc = path.createControl(c); GridData d = new GridData(GridData.FILL_HORIZONTAL); pc.setLayoutData(d); Control lc = lists.createControl(c); d = new GridData(GridData.FILL_BOTH); lc.setLayoutData(d); path.updateSelection(); return c; }
public void setObject(Object data) { super.setObject(data); path.setObject(data); lists.setObject(data); }
public DependencyWizardView() { path.addPathListener(lists); this.setMessage(WizardKeys.getString("DependencyWizardView.Message")); this.setTitle(WizardKeys.getString("DependencyWizardView.Title")); this.setWindowTitle(WizardKeys.getString("DependencyWizardView.WindowTitle")); }