/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package net.sourceforge.c4jplugin.internal.ui.contracthierarchy.actions; import net.sourceforge.c4jplugin.internal.ui.contracthierarchy.ContractHierarchyMessages; import net.sourceforge.c4jplugin.internal.ui.contracthierarchy.MethodsViewer; import org.eclipse.jdt.internal.ui.IJavaHelpContextIds; import org.eclipse.jdt.internal.ui.JavaPluginImages; import org.eclipse.jface.action.Action; import org.eclipse.swt.custom.BusyIndicator; import org.eclipse.ui.PlatformUI; /** * Action to show / hide inherited members in the method view * Depending in the action state a different label provider is installed in the viewer */ public class ShowInheritedMembersAction extends Action { private MethodsViewer fMethodsViewer; /** * Creates the action. */ public ShowInheritedMembersAction(MethodsViewer viewer, boolean initValue) { super(ContractHierarchyMessages.ShowInheritedMembersAction_label); setDescription(ContractHierarchyMessages.ShowInheritedMembersAction_description); setToolTipText(ContractHierarchyMessages.ShowInheritedMembersAction_tooltip); JavaPluginImages.setLocalImageDescriptors(this, "inher_co.gif"); //$NON-NLS-1$ fMethodsViewer= viewer; PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.SHOW_INHERITED_ACTION); setChecked(initValue); } /* * @see Action#actionPerformed */ public void run() { BusyIndicator.showWhile(fMethodsViewer.getControl().getDisplay(), new Runnable() { public void run() { fMethodsViewer.showInheritedMethods(isChecked()); } }); } }