Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2017-05-16 12:29:38 +0000
committerMickael Istria2017-05-16 12:29:57 +0000
commit58fb05181030ab9105edb1d26f36f206f74ab4dc (patch)
tree567e9c728de54914360d823059a0e95a02440a77
parenta168a711e19949bfe7963b91c382146bc10887c6 (diff)
downloadeclipse.platform.text-58fb05181030ab9105edb1d26f36f206f74ab4dc.tar.gz
eclipse.platform.text-58fb05181030ab9105edb1d26f36f206f74ab4dc.tar.xz
eclipse.platform.text-58fb05181030ab9105edb1d26f36f206f74ab4dc.zip
Change-Id: I4c18bb3a67fc9c6e5ffb4f96105c40b692b857d2 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--org.eclipse.ui.genericeditor.tests/plugin.xml18
1 files changed, 14 insertions, 4 deletions
diff --git a/org.eclipse.ui.genericeditor.tests/plugin.xml b/org.eclipse.ui.genericeditor.tests/plugin.xml
index c798ba3e3b0..e9a65d19eb6 100644
--- a/org.eclipse.ui.genericeditor.tests/plugin.xml
+++ b/org.eclipse.ui.genericeditor.tests/plugin.xml
@@ -15,25 +15,25 @@
point="org.eclipse.ui.genericeditor.contentAssistProcessors">
<contentAssistProcessor
class="org.eclipse.ui.genericeditor.tests.contributions.BarContentAssistProcessor"
- contentType="org.eclipse.core.runtime.text">
+ contentType="org.eclipse.ui.genericeditor.tests.content-type">
</contentAssistProcessor>
<contentAssistProcessor
class="org.eclipse.ui.genericeditor.tests.contributions.LongRunningBarContentAssistProcessor"
- contentType="org.eclipse.core.runtime.text">
+ contentType="org.eclipse.ui.genericeditor.tests.content-type">
</contentAssistProcessor>
</extension>
<extension
point="org.eclipse.ui.genericeditor.hoverProviders">
<hoverProvider
class="org.eclipse.ui.genericeditor.tests.contributions.MagicHoverProvider"
- contentType="org.eclipse.core.runtime.text">
+ contentType="org.eclipse.ui.genericeditor.tests.content-type">
</hoverProvider>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.eclipse.ui.genericeditor.tests.contributions.ThePresentationReconciler"
- contentType="org.eclipse.core.runtime.text">
+ contentType="org.eclipse.ui.genericeditor.tests.content-type">
</presentationReconciler>
</extension>
<extension
@@ -43,5 +43,15 @@
markerType="org.eclipse.core.resources.problemmarker">
</markerResolutionGenerator>
</extension>
+ <extension
+ point="org.eclipse.core.contenttype.contentTypes">
+ <content-type
+ base-type="org.eclipse.core.runtime.text"
+ file-names="foo.txt"
+ id="org.eclipse.ui.genericeditor.tests.content-type"
+ name="Generic Editor Test content-type"
+ priority="normal">
+ </content-type>
+ </extension>
</plugin>

Back to the top