KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jface > internal > provisional > action > ToolBarContributionItem2


1 /*******************************************************************************
2  * Copyright (c) 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  ******************************************************************************/

11
12 package org.eclipse.jface.internal.provisional.action;
13
14 import org.eclipse.jface.action.IToolBarManager;
15 import org.eclipse.jface.action.ToolBarContributionItem;
16
17 /**
18  * Extends <code>ToolBarContributionItem</code> to implement <code>IToolBarContributionItem</code>.
19  *
20  * <p>
21  * <strong>EXPERIMENTAL</strong>. This class or interface has been added as
22  * part of a work in progress. There is a guarantee neither that this API will
23  * work nor that it will remain the same. Please do not use this API without
24  * consulting with the Platform/UI team.
25  * </p>
26  *
27  * @since 3.2
28  */

29 public class ToolBarContributionItem2 extends ToolBarContributionItem implements
30         IToolBarContributionItem {
31
32     /**
33      *
34      */

35     public ToolBarContributionItem2() {
36         super();
37     }
38
39     /**
40      * @param toolBarManager
41      */

42     public ToolBarContributionItem2(IToolBarManager toolBarManager) {
43         super(toolBarManager);
44     }
45
46     /**
47      * @param toolBarManager
48      * @param id
49      */

50     public ToolBarContributionItem2(IToolBarManager toolBarManager, String JavaDoc id) {
51         super(toolBarManager, id);
52     }
53
54 }
55
Popular Tags