Skip to main content
summaryrefslogblamecommitdiffstats
blob: 99cb212331681d6746b2df15c2ae820a8d00eacf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                      

                         


                                    
                  

                                 





                                                





                                       


                                                        
                                  












                                                                                                   
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<plugin
   id="org.eclipse.compare.examples"
   name="%pluginName"
   version="3.0.0"
   provider-name="%providerName">

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

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

<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