Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.genericeditor.diff.extension/plugin.xml')
-rw-r--r--bundles/org.eclipse.team.genericeditor.diff.extension/plugin.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.genericeditor.diff.extension/plugin.xml b/bundles/org.eclipse.team.genericeditor.diff.extension/plugin.xml
new file mode 100644
index 000000000..808defec0
--- /dev/null
+++ b/bundles/org.eclipse.team.genericeditor.diff.extension/plugin.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<!--
+ Copyright (c) 2017 Red Hat Inc. and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Sopot Cela (Red Hat Inc.) - initial implementation
+-->
+<plugin>
+ <extension
+ point="org.eclipse.ui.genericeditor.presentationReconcilers">
+ <presentationReconciler
+ class="org.eclipse.team.internal.genericeditor.diff.extension.presentation.DiffPresentationReconciler"
+ contentType="org.eclipse.team.genericeditor.diff.extension.patch">
+ </presentationReconciler>
+ </extension>
+ <extension
+ point="org.eclipse.core.filebuffers.documentSetup">
+ <participant
+ class="org.eclipse.team.internal.genericeditor.diff.extension.partitioner.DiffPartitioner"
+ contentTypeId="org.eclipse.team.genericeditor.diff.extension.patch"
+ extensions="patch,diff">
+ </participant>
+ </extension>
+ <extension
+ point="org.eclipse.core.contenttype.contentTypes">
+ <content-type
+ base-type="org.eclipse.core.runtime.text"
+ file-extensions="diff,patch"
+ id="org.eclipse.team.genericeditor.diff.extension.patch"
+ name="%patch_ContentTypeName"
+ priority="normal">
+ </content-type>
+ </extension>
+
+</plugin>

Back to the top