Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Desrivieres2003-11-07 20:48:57 +0000
committerJim Desrivieres2003-11-07 20:48:57 +0000
commit82de44296077ce77956906422bb298f5fa110193 (patch)
tree4adf97d0cdc5f181d0cf4be143079837cce4cd2d
parentba88679231b36f9335bc86bf1e969603078a6b77 (diff)
downloadeclipse.platform.text-82de44296077ce77956906422bb298f5fa110193.tar.gz
eclipse.platform.text-82de44296077ce77956906422bb298f5fa110193.tar.xz
eclipse.platform.text-82de44296077ce77956906422bb298f5fa110193.zip
Fix extension point names
-rw-r--r--org.eclipse.ui.editors/schema/documentProviders.exsd8
-rw-r--r--org.eclipse.ui.editors/schema/markerUpdaters.exsd8
2 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.ui.editors/schema/documentProviders.exsd b/org.eclipse.ui.editors/schema/documentProviders.exsd
index 6d476918468..3dce37c4766 100644
--- a/org.eclipse.ui.editors/schema/documentProviders.exsd
+++ b/org.eclipse.ui.editors/schema/documentProviders.exsd
@@ -1,9 +1,9 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.ui">
+<schema targetNamespace="org.eclipse.ui.editors">
<annotation>
<appInfo>
- <meta.schema plugin="org.eclipse.ui" id="documentProviders" name="Document Providers"/>
+ <meta.schema plugin="org.eclipse.ui.editors" id="documentProviders" name="Document Providers"/>
</appInfo>
<documentation>
This extension point is used to define mappings between file types and document providers or between types of editor inputs and document providers that can be used by editors. Document providers must implement the interface &lt;samp&gt;org.eclipse.ui.texteditor.IDocumentProvider&lt;/samp&gt;. Editor inputs must be instance of &lt;samp&gt;org.eclipse.ui.IEditorInput&lt;/samp&gt;.
@@ -90,7 +90,7 @@
</appInfo>
<documentation>
&lt;pre&gt;
-&lt;extension point=&quot;org.eclipse.ui.documentProviders&quot;&gt;
+&lt;extension point=&quot;org.eclipse.ui.editors.documentProviders&quot;&gt;
&lt;provider
extensions=&quot;.jav&quot;
class=&quot;org.eclipse.ui.examples.javaeditor.JavaDocumentProvider&quot;
@@ -102,7 +102,7 @@
This example registers &lt;samp&gt;org.eclipse.ui.examples.javaeditor.JavaDocumentProvider&lt;/samp&gt; as the default provider for files with the extension &quot;.jav&quot;.
&lt;p&gt;
&lt;pre&gt;
-&lt;extension point=&quot;org.eclipse.ui.documentProviders&quot;&gt;
+&lt;extension point=&quot;org.eclipse.ui.editors.documentProviders&quot;&gt;
&lt;provider
inputTypes=&quot;org.eclipse.ui.IStorageEditorInput&quot;
class=&quot;org.eclipse.ui.editors.text.FileDocumentProvider&quot;
diff --git a/org.eclipse.ui.editors/schema/markerUpdaters.exsd b/org.eclipse.ui.editors/schema/markerUpdaters.exsd
index 59502cea577..a6e9953f6d2 100644
--- a/org.eclipse.ui.editors/schema/markerUpdaters.exsd
+++ b/org.eclipse.ui.editors/schema/markerUpdaters.exsd
@@ -1,9 +1,9 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.ui">
+<schema targetNamespace="org.eclipse.ui.editors">
<annotation>
<appInfo>
- <meta.schema plugin="org.eclipse.ui" id="markerUpdaters" name="Marker Updaters"/>
+ <meta.schema plugin="org.eclipse.ui.editors" id="markerUpdaters" name="Marker Updaters"/>
</appInfo>
<documentation>
This extension point is used for registering marker update strategies with marker annotation models. A resource that is opened in a text editor is associated with a marker annotation model. For each marker attached to the resource this model manages a position that is updated with each change applied to the text in the editor. If the resource is saved, the text in the editor and the position managed for a marker are passed over to the registered marker update strategies. These strategies can then update the marker&apos;s attributes based on the text and the position. Marker update strategies are requested to implement the interface &lt;samp&gt;org.eclipse.ui.texteditor.IMarkerUpdater&lt;/samp&gt;. The update strategies can be registered either for a particular marker type or all marker types. The latter by omitting any marker type in the extension.
@@ -83,7 +83,7 @@
</appInfo>
<documentation>
&lt;pre&gt;
-&lt;extension point= &quot;org.eclipse.ui.markerUpdaters&quot;&gt;
+&lt;extension point= &quot;org.eclipse.ui.editors.markerUpdaters&quot;&gt;
&lt;updater
id=&quot;org.eclipse.jdt.ui.markerUpdaters.JavaSearchMarkerUpdater&quot;
class=&quot;org.eclipse.jdt.internal.ui.search.JavaSearchMarkerUpdater&quot;
@@ -96,7 +96,7 @@ This example registers &lt;samp&gt;org.eclipse.jdt.internal.ui.search.JavaSearch
type &lt;samp&gt;org.eclipse.search.searchmarker&lt;/samp&gt; including all its derived types.
&lt;/p&gt;
&lt;pre&gt;
-&lt;extension point= &quot;org.eclipse.ui.markerUpdaters&quot;&gt;
+&lt;extension point= &quot;org.eclipse.ui.editors.markerUpdaters&quot;&gt;
&lt;updater
id=&quot;org.eclipse.ui.texteditor.BasicMarkerUpdater&quot;
class=&quot;org.eclipse.ui.texteditor.BasicMarkerUpdater&quot;&gt;

Back to the top