Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2014-07-24 11:53:33 +0000
committerDani Megert2014-07-24 11:56:45 +0000
commit4de2a6a1bd2bebdf354983ea70dfb1ea22945aff (patch)
treeabdf5ce38a26a11ff407bcb4872592569d19b42d
parent76ca8f693f191502b2aaa13a86fff6da60866fe4 (diff)
downloadeclipse.platform.ui-4de2a6a1bd2bebdf354983ea70dfb1ea22945aff.tar.gz
eclipse.platform.ui-4de2a6a1bd2bebdf354983ea70dfb1ea22945aff.tar.xz
eclipse.platform.ui-4de2a6a1bd2bebdf354983ea70dfb1ea22945aff.zip
Fixed bug 436164: [Help] Wrong e4 model extension point identifieres in the documentation
-rw-r--r--bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.definition.enrichment.exsd6
-rw-r--r--bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.exsd4
2 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.definition.enrichment.exsd b/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.definition.enrichment.exsd
index bad5069cc0d..c8c86411d46 100644
--- a/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.definition.enrichment.exsd
+++ b/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.definition.enrichment.exsd
@@ -3,7 +3,7 @@
<schema targetNamespace="org.eclipse.e4.ui.workbench" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
- <meta.schema plugin="org.eclipse.e4.ui.workbench" id="org.eclipse.e4.workbench.model.definition.enrichment" name="Model definition extensions"/>
+ <meta.schema plugin="org.eclipse.e4.ui.workbench" id="model.definition.enrichment" name="Model definition extensions"/>
</appInfo>
<documentation>
&lt;strong&gt;This is not an API. The schema for this extension point is not frozen and might change in a non-backward compatible way in the future.&lt;/strong&gt;
@@ -81,9 +81,9 @@ To find and create a custom UI model element via the EModelService#createModelEl
The following is an example to register a model definiton enrichment:
&lt;extension
- point=&quot;org.eclipse.e4.workbench.model.definition.enrichment&quot;&gt;
+ point=&quot;org.eclipse.e4.workbench.model.definition.enrichment&quot;&gt;
&lt;definitionEnrichment
- ePackageNS=&quot;http://www.eclipse.org/ui/2010/UIModel/application/ui&quot;&gt;
+ ePackageNS=&quot;http://www.eclipse.org/ui/2010/UIModel/application/ui&quot;&gt;
&lt;/definitionEnrichment&gt;
&lt;/extension&gt;
</documentation>
diff --git a/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.exsd b/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.exsd
index 2b259a49b76..fffe157d154 100644
--- a/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.exsd
+++ b/bundles/org.eclipse.e4.ui.workbench/schema/org.eclipse.e4.workbench.model.exsd
@@ -3,7 +3,7 @@
<schema targetNamespace="org.eclipse.e4.ui.workbench" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
- <meta.schema plugin="org.eclipse.e4.ui.workbench" id="org.eclipse.e4.workbench.model" name="Model extensions"/>
+ <meta.schema plugin="org.eclipse.e4.ui.workbench" id="model" name="Model extensions"/>
</appInfo>
<documentation>
&lt;strong&gt;This is not an API. The schema for this extension point is not frozen and might change in a non-backward compatible way in the future.&lt;/strong&gt;
@@ -215,7 +215,7 @@ Whenever possible, the model extensions of dependent bundles are processed befor
<meta.section type="copyright"/>
</appInfo>
<documentation>
- Copyright (c) 2010, 2012 IBM Corporation and others.&lt;br&gt;
+ Copyright (c) 2010, 2014 IBM Corporation and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at &lt;a

Back to the top