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.ui;
11:
12: import org.eclipse.jface.action.ICoolBarManager;
13:
14: /**
15: * Interface extention to <code>IActionBars</code> that provides an additional
16: * cool bar manager.
17: *
18: * @since 3.0
19: */
20: public interface IActionBars2 extends IActionBars {
21:
22: /**
23: * Returns the cool bar manager.
24: * <p>
25: * Note: Clients who add or remove items from the returned cool bar manager are
26: * responsible for calling <code>updateActionBars</code> so that the changes
27: * can be propagated throughout the workbench.
28: * </p>
29: *
30: * @return the cool bar manager.
31: */
32: public ICoolBarManager getCoolBarManager();
33:
34: }
|