KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > navigator > resources > workbench > TabbedPropertySheetProjectExplorerContributor


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.ui.internal.navigator.resources.workbench;
13
14 import org.eclipse.ui.navigator.CommonNavigator;
15 import org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor;
16
17 /**
18  * A tabbed property view contributor for the Project Explorer.
19  *
20  * @since 3.2
21  */

22 public class TabbedPropertySheetProjectExplorerContributor implements
23         ITabbedPropertySheetPageContributor {
24     
25     private final String JavaDoc contributorId;
26     
27     protected TabbedPropertySheetProjectExplorerContributor(CommonNavigator aCommonNavigator) {
28         contributorId = aCommonNavigator.getViewSite().getId();
29     }
30
31     /* (non-Javadoc)
32      * @see org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor#getContributorId()
33      */

34     public String JavaDoc getContributorId() {
35         return contributorId;
36     }
37
38 }
39
Popular Tags