1 /******************************************************************************* 2 * Copyright (c) 2007 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.navigator.resources; 13 14 import org.eclipse.ui.IWorkbench; 15 import org.eclipse.ui.IWorkbenchPage; 16 import org.eclipse.ui.IWorkbenchWindow; 17 import org.eclipse.ui.PlatformUI; 18 import org.eclipse.ui.navigator.CommonNavigator; 19 import org.eclipse.ui.navigator.INavigatorContentService; 20 21 /** 22 * Provides constant for the view identifier for the standard instance of the 23 * Common Navigator. 24 * 25 * @see CommonNavigator 26 * @see INavigatorContentService 27 * @since 3.2 28 * 29 */ 30 public final class ProjectExplorer { 31 32 /** 33 * Provides a constant for the standard instance of the Common Navigator. 34 * 35 * @see PlatformUI#getWorkbench() 36 * @see IWorkbench#getActiveWorkbenchWindow() 37 * @see IWorkbenchWindow#getActivePage() 38 * 39 * @see IWorkbenchPage#findView(String) 40 * @see IWorkbenchPage#findViewReference(String) 41 */ 42 public static final String VIEW_ID = "org.eclipse.ui.navigator.ProjectExplorer"; //$NON-NLS-1$ 43 44 } 45