コード例 #1
0
 /** Runs the action. */
 @Override
 public void run() {
   fHierarchyViewPart.setLinkingEnabled(isChecked());
 }
コード例 #2
0
 /**
  * Constructs a new action.
  *
  * @param part the type hierarchy part
  */
 public ToggleLinkingAction(ITypeHierarchyViewPart part) {
   setChecked(part.isLinkingEnabled());
   fHierarchyViewPart = part;
 }