Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Pollock2005-10-31 17:09:45 +0000
committerDouglas Pollock2005-10-31 17:09:45 +0000
commite405dfd3b72595fc4edd405efafbf8f8f2a44d2d (patch)
tree2243f0dc5680c823c00136c889bd43fde361b93b
parent9ecb76798272bdca684f8ee329ecf4259f2a93c9 (diff)
downloadeclipse.platform.ui-I20051031-1300.tar.gz
eclipse.platform.ui-I20051031-1300.tar.xz
eclipse.platform.ui-I20051031-1300.zip
Bug 114317. Add experimental view from resources.I20051031-1300
-rw-r--r--bundles/org.eclipse.ui.navigator.resources/plugin.properties3
-rw-r--r--bundles/org.eclipse.ui.navigator.resources/plugin.xml3
-rw-r--r--examples/org.eclipse.ui.examples.navigator/plugin.xml4
3 files changed, 7 insertions, 3 deletions
diff --git a/bundles/org.eclipse.ui.navigator.resources/plugin.properties b/bundles/org.eclipse.ui.navigator.resources/plugin.properties
index 6d4d9dc9469..bd6f8c4746e 100644
--- a/bundles/org.eclipse.ui.navigator.resources/plugin.properties
+++ b/bundles/org.eclipse.ui.navigator.resources/plugin.properties
@@ -31,4 +31,5 @@ common.navigator.name=Project Explorer (old)
resource.extension.name=Resources
-Common_Wizard = Common Wizard \ No newline at end of file
+Common_Wizard = Common Wizard
+Common_Resource_Navigator=Experimental Resource Navigator
diff --git a/bundles/org.eclipse.ui.navigator.resources/plugin.xml b/bundles/org.eclipse.ui.navigator.resources/plugin.xml
index ebec477590a..956484c206f 100644
--- a/bundles/org.eclipse.ui.navigator.resources/plugin.xml
+++ b/bundles/org.eclipse.ui.navigator.resources/plugin.xml
@@ -8,9 +8,10 @@
<extension
point="org.eclipse.ui.views">
<view
+ category="org.eclipse.ui"
class="org.eclipse.ui.navigator.CommonNavigator"
id="org.eclipse.ui.navigator.resourceContent"
- name="%Common_Navigator_Example"/>
+ name="%Common_Resource_Navigator"/>
</extension>
<!-- Resource Content -->
<extension
diff --git a/examples/org.eclipse.ui.examples.navigator/plugin.xml b/examples/org.eclipse.ui.examples.navigator/plugin.xml
index 9cc05486346..ae443e02767 100644
--- a/examples/org.eclipse.ui.examples.navigator/plugin.xml
+++ b/examples/org.eclipse.ui.examples.navigator/plugin.xml
@@ -2,13 +2,15 @@
<?eclipse version="3.0"?>
<plugin>
+ <!--
<extension
point="org.eclipse.ui.views">
<view
class="org.eclipse.ui.navigator.CommonNavigator"
- id="org.eclipse.ui.navigator.resourceContent"
+ id="org.eclipse.ui.examples.navigator.resourceContent"
name="%Common_Navigator_Example"/>
</extension>
+ -->
<!-- The example uses the already defined Resource extension
<extension
point="org.eclipse.ui.navigator.navigatorContent">

Back to the top