use of org.eclipse.jface.util.OpenStrategy in project nebula.widgets.nattable by eclipse.
the class RowPostSelectionProvider method hookControl.
protected void hookControl(Control control) {
OpenStrategy handler = new OpenStrategy(control);
handler.addPostSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
handlePostSelect(e);
}
});
}
Aggregations