Skip to main content
summaryrefslogtreecommitdiffstats
blob: c6f1ef6611dd5bdac724e48cbbd3b6033a73327e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!-- File written by PDE 1.0 -->
<plugin
   id="org.eclipse.compare.examples"
   name="%pluginName"
   version="2.1.0"
   provider-name="%providerName">

<!-- Required plugins -->

<requires>
   <import plugin="org.eclipse.ui"/>
   <import plugin="org.eclipse.core.resources"/>
   <import plugin="org.eclipse.compare"/>
</requires>

<!-- Runtime -->

<runtime>
   <library name="compareexamples.jar">
      <export name="*"/>
   </library>
</runtime>

<!-- Extension points -->

<!-- Extensions -->
<extension
	point="org.eclipse.compare.contentMergeViewers">
	<viewer
		extensions="kvtxt"
		class="org.eclipse.compare.examples.structurecreator.TextMergeViewerCreator">
	</viewer>
</extension>

<extension
	point="org.eclipse.compare.structureCreators">
	<structureCreator
		extensions="kv"
		class="org.eclipse.compare.examples.structurecreator.KeyValuePairStructureCreator">
	</structureCreator>
</extension>

</plugin>

Back to the top