List of usage examples for org.eclipse.jface.fieldassist ControlDecoration removeSelectionListener
public void removeSelectionListener(SelectionListener listener)
From source file:org.eclipse.rap.demo.controls.ControlDecorationTab.java
License:Open Source License
private void configureDecoration(ControlDecoration decoration) { decoration.setShowHover(showHover);//from w ww .j a va2 s . co m decoration.setShowOnlyOnFocus(showOnlyOnFocus); decoration.setDescriptionText(description); if (hasCreateProperty(PROP_SELECTION_LISTENER)) { decoration.addSelectionListener(listener); } else { decoration.removeSelectionListener(listener); } }