blob: 18a5f9fa0ae996ba35328e46ab57da1f4ebed9a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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 org.eclipse.jdt.internal.ui.workingsets;
import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.action.Action;
import org.eclipse.ui.PlatformUI;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
/**
* Clears the selected working set in the action group's view.
*
* @since 2.0
*/
public class ClearWorkingSetAction extends Action {
private WorkingSetFilterActionGroup fActionGroup;
public ClearWorkingSetAction(WorkingSetFilterActionGroup actionGroup) {
super(WorkingSetMessages.ClearWorkingSetAction_text);
Assert.isNotNull(actionGroup);
setToolTipText(WorkingSetMessages.ClearWorkingSetAction_toolTip);
setEnabled(actionGroup.getWorkingSet() != null);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.CLEAR_WORKING_SET_ACTION);
fActionGroup= actionGroup;
}
/*
* Overrides method from Action
*/
@Override
public void run() {
fActionGroup.setWorkingSet(null, true);
}
}