blob: d8876c95e9d2c795fc62b0bcdaf158d5c8312731 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.ui.internal;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IStatusLineManager;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.ui.IEditorActionBarContributor;
public interface IExtendedContributor extends IEditorActionBarContributor, IPopupMenuContributor {
public void contributeToMenu(IMenuManager menu);
public void contributeToStatusLine(IStatusLineManager manager);
public void contributeToToolBar(IToolBarManager manager);
public void updateToolbarActions();
}