blob: 4c47e5b58471ebcf4dd02216b26279b4398d8d57 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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.gmf.runtime.diagram.ui.internal.parts;
import org.eclipse.gef.ui.actions.ActionBarContributor;
/**
* Minimal action bar contributor that does not use the Contribution
* Item Service.
*
* @author wdiu, Wayne Diu
*/
public class MinimalActionBarContributor extends ActionBarContributor{
/**
* Do nothing.
*
* @see org.eclipse.gef.ui.actions.ActionBarContributor#buildActions()
*/
protected void buildActions() {
//do nothing
}
/**
* Do nothing.
*
* @see org.eclipse.gef.ui.actions.ActionBarContributor#declareGlobalActionKeys()
*/
protected void declareGlobalActionKeys() {
//do nothing
}
}