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

                                      
                                                                               
                                                                               






                                                                               
                                                                               
                                                                               




                                                                                                                          
                                                                                                      
                                         

                                                                                                     
                                                                      
                           



                                                                             
                                                                                                                      
                                                                                                      
                                



                                                                                                                         
             


                                                                          

                                                                                                                   
                             




                                                                                                         
                  

                                                                                      









                                                                                                               
                                         
                    






                                                                                            








                                                              






                                                                          
                 
                                                                     
                              

                                                                                 

                            
             







                                                                                            
                                                                        


                                                                                           
                                                                                    

                       

         
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!-- ====================================================================== -->
<!-- Copyright (c) 2016, 2017 Red Hat Inc. and others.                      -->
<!-- All rights reserved. This program and the accompanying materials       -->
<!-- are made available under the terms of the Eclipse Public License v1.0  -->
<!-- which accompanies this distribution, and is available at               -->
<!-- http://www.eclipse.org/legal/epl-v10.html                              -->
<!--                                                                        -->
<!-- Contributors:                                                          -->
<!--     Sopot Cela & Mickael Istria (Red Hat Inc). -initial implementation -->
<!--     Lucas Bullen (Red Hat Inc.) - Bug 508829 custom reconciler support -->
<!-- ====================================================================== -->
<plugin>
 <extension
			 point="org.eclipse.ui.genericeditor.contentAssistProcessors">
		<contentAssistProcessor
					class="org.eclipse.ui.genericeditor.tests.contributions.BarContentAssistProcessor"
					contentType="org.eclipse.ui.genericeditor.tests.content-type">
		</contentAssistProcessor>
  <contentAssistProcessor
        class="org.eclipse.ui.genericeditor.tests.contributions.LongRunningBarContentAssistProcessor"
        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.AlrightyHoverProvider"
					contentType="org.eclipse.ui.genericeditor.tests.content-type">
		</hoverProvider>
		<hoverProvider
					class="org.eclipse.ui.genericeditor.tests.contributions.HelloHoverProvider"
					contentType="org.eclipse.ui.genericeditor.tests.specialized-content-type-bartxt">
		</hoverProvider>
 </extension>
  <extension
			 point="org.eclipse.ui.genericeditor.reconcilers">
		<reconciler
					class="org.eclipse.ui.genericeditor.tests.contributions.TheReconcilerFirst"
					contentType="org.eclipse.core.runtime.text">
		</reconciler>
		<reconciler
			class="org.eclipse.ui.genericeditor.tests.contributions.TheReconcilerSecond"
			contentType="org.eclipse.ui.genericeditor.tests.specialized-content-type-bartxt">
		</reconciler>
	</extension>
	<extension
			 point="org.eclipse.ui.genericeditor.presentationReconcilers">
		<presentationReconciler
			class="org.eclipse.ui.genericeditor.tests.contributions.ThePresentationReconcilerBlue"
			contentType="org.eclipse.core.runtime.text">
		</presentationReconciler>
		<presentationReconciler
			class="org.eclipse.ui.genericeditor.tests.contributions.ThePresentationReconcilerRed"
			contentType="org.eclipse.ui.genericeditor.tests.specialized-content-type">
		</presentationReconciler>
		<presentationReconciler
			class="org.eclipse.ui.genericeditor.tests.contributions.ThePresentationReconcilerGreen"
			contentType="org.eclipse.ui.genericeditor.tests.content-type">
		</presentationReconciler>
	</extension>
 <extension
       point="org.eclipse.ui.ide.markerResolution">
    <markerResolutionGenerator
          class="org.eclipse.ui.genericeditor.tests.contributions.MarkerResolutionGenerator"
          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>
    <content-type
          base-type="org.eclipse.ui.genericeditor.tests.content-type"
          file-names="foo.txt"
          id="org.eclipse.ui.genericeditor.tests.specialized-content-type"
          name="Specialized Generic Editor content-type"
          priority="normal">
    </content-type>
    <content-type
          base-type="org.eclipse.ui.genericeditor.tests.content-type"
          file-names="bar.txt"
          id="org.eclipse.ui.genericeditor.tests.specialized-content-type-bartxt"
          name="Specialized Generic Editor content-type for &apos;bar.txt&apos;"
          priority="normal">
    </content-type>
 </extension>
 <extension
       point="org.eclipse.ui.genericeditor.autoEditStrategies">
    <autoEditStrategy
          class="org.eclipse.ui.genericeditor.tests.contributions.TheAutoEditStrategyFirst"
          contentType="org.eclipse.core.runtime.text">
    </autoEditStrategy>
    <autoEditStrategy
          class="org.eclipse.ui.genericeditor.tests.contributions.TheAutoEditStrategySecond"
          contentType="org.eclipse.ui.genericeditor.tests.content-type">
    </autoEditStrategy>
    <autoEditStrategy
          class="org.eclipse.ui.genericeditor.tests.contributions.TheAutoEditStrategyThird"
          contentType="org.eclipse.ui.genericeditor.tests.specialized-content-type">
    </autoEditStrategy>
 </extension>

</plugin>

Back to the top