showAllCallers = this.toolkit.createButton(autoSelectOptionsComposite, "All callers", SWT.RADIO);
showAllCallers.setLayoutData(new TableWrapData(TableWrapData.FILL));
showAllCallers.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
view.setAutoSelectDecorator(new AllCallersAlgorithm());
}
});
showAllDependencies = this.toolkit.createButton(autoSelectOptionsComposite, "All dependencies", SWT.RADIO);
showAllDependencies.setLayoutData(new TableWrapData(TableWrapData.FILL));