comparison dwtx/jface/action/IToolBarManager.d @ 25:ca63e2bea4bf

CoolBarManager
author Frank Benoit <benoit@tionex.de>
date Thu, 03 Apr 2008 04:50:25 +0200
parents
children
comparison
equal deleted inserted replaced
24:eb6b3e6de869 25:ca63e2bea4bf
1 /*******************************************************************************
2 * Copyright (c) 2000, 2006 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.jface.action.IToolBarManager;
14
15 import dwtx.jface.action.IContributionManager;
16
17 /**
18 * The <code>IToolBarManager</code> interface provides protocol for managing
19 * contributions to a tool bar. It extends <code>IContributionManager</code>
20 * but does not declare any new members; it exists only to increase the
21 * readability of code using tool bars.
22 * <p>
23 * This package also provides a concrete tool bar manager implementation,
24 * {@link ToolBarManager <code>ToolBarManager</code>}.
25 * </p>
26 */
27 public interface IToolBarManager : IContributionManager {
28 }