blob: 4800de58ba076d4b90f6e146a7044f90012762d0 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2002-2006 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 - Initial API and implementation
*
* </copyright>
*
* $Id: XSD2EcoreActionBarContributor.java,v 1.3 2006/12/29 18:29:15 marcelop Exp $
*/
package org.eclipse.emf.mapping.xsd2ecore.presentation;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.emf.edit.ui.action.EditingDomainActionBarContributor;
/**
* This is the action bar contributor for the XSD2Ecore model editor.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class XSD2EcoreActionBarContributor
extends EditingDomainActionBarContributor
{
/**
* This creates an instance of the contributor.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public XSD2EcoreActionBarContributor()
{
super();
}
/**
* This adds Separators for editor additions to the tool bar.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void contributeToToolBar(IToolBarManager toolBarManager)
{
toolBarManager.add(new Separator("xsd2ecore-settings"));
toolBarManager.add(new Separator("xsd2ecore-additions"));
}
}