Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-01-22 12:28:25 +0000
committerAlexander Kurtakov2021-01-22 13:13:54 +0000
commit7b29c1c8d395208a830f6dcc7125033f0683eb3a (patch)
tree8e905cbfb27debf86d57c9a219324cfb65dde027
parent93f06a8e77b61b88be4c5444a806ead778dfba79 (diff)
downloadeclipse.platform.ui-7b29c1c8d395208a830f6dcc7125033f0683eb3a.tar.gz
eclipse.platform.ui-7b29c1c8d395208a830f6dcc7125033f0683eb3a.tar.xz
eclipse.platform.ui-7b29c1c8d395208a830f6dcc7125033f0683eb3a.zip
Do not refer to Resource Navigator in javadoc.
It's deprecated and scheduled for removal. Change-Id: Iae944f0d2be730b90d011bbf33ac64d7b9671d7b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java
index 25216130366..26f993448f8 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -56,7 +56,7 @@ package org.eclipse.ui;
*
* // Top left: Resource Navigator view and Bookmarks view placeholder
* IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.25f, editorArea);
- * topLeft.addView(IPageLayout.ID_RES_NAV);
+ * topLeft.addView(IPageLayout.ID_PROJECT_EXPLORER);
* topLeft.addPlaceholder(IPageLayout.ID_BOOKMARKS);
*
* // Bottom left: Outline view and Property Sheet view

Back to the top