01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.jface.action;
11:
12: /**
13: * The <code>IToolBarManager</code> interface provides protocol for managing
14: * contributions to a tool bar. It extends <code>IContributionManager</code>
15: * but does not declare any new members; it exists only to increase the
16: * readability of code using tool bars.
17: * <p>
18: * This package also provides a concrete tool bar manager implementation,
19: * {@link ToolBarManager <code>ToolBarManager</code>}.
20: * </p>
21: */
22: public interface IToolBarManager extends IContributionManager {
23: }
|