There are 1 code examples for org.eclipse.ui.ISelectionService.

The API names are highlighted below. You can use suckoo button to vote the code example(s) you like. The best code example will be ranked first next time. Thanks a lot for your feedback.

Project Name: codecover Package: org.codecover.eclipse.views

Source Code: PickTestCaseView.java (Click to view .java file)

Method Code:
vote
like

@Override public void dispose(){
  ISelectionService selectionServ;
  selectionServ=getSite().getWorkbenchWindow().getSelectionService();
  selectionServ.removePostSelectionListener(selectionListener);
  super.dispose();
  selectionListener=null;
  tableViewer=null;
}