blob: 215cb97e32b110faf79a8a71019e16b3444954ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.ui.tests.api;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.tests.TestPlugin;
public class MockAction extends Action {
private boolean hasRun = false;
/**
* Constructor for MockAction
*/
protected MockAction(String text) {
super(text);
TestPlugin plugin = TestPlugin.getDefault();
setImageDescriptor(plugin.getImageDescriptor("anything.gif"));
setToolTipText(text);
}
/**
* Constructor for MockAction
*/
protected MockAction(String text, ImageDescriptor image) {
super(text, image);
setToolTipText(text);
}
public void run() {
hasRun = true;
}
public void clearRun() {
hasRun = false;
}
public boolean getRun() {
return hasRun;
}
}