blob: 6dcf89091916d0de41ddbf13107cbffbdfbf6147 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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 org.eclipse.gmf.tests.runtime.common.ui.services.action.contributionitem;
import org.eclipse.jface.action.Action;
/**
* A concrete action class to be used the test contribution item providers.
*
* @author cmahoney
*/
public class MyAction
extends Action {
public MyAction(String id) {
super(id);
setId(id);
}
}