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


                                    
                  





                                                                   


                
                                                 
                                                   





                                                                                                               
                                                                                                                                    









                                                                                 
 
         
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
   id="org.eclipse.core.filebuffers"
   name="%pluginName"
   version="3.0.0"
   provider-name="%providerName"
   class="org.eclipse.core.internal.filebuffers.FileBuffersPlugin">

   <runtime>
      <library name="filebuffers.jar">
         <export name="*"/>
      </library>
   </runtime>
   <requires>
      <import plugin="org.eclipse.core.runtime"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.text"/>
   </requires>


   <extension-point id="documentCreation" name="%documentCreationPoint" schema="schema/documentCreation.exsd"/>
   <extension-point id="documentSetup" name="%documentSetupPoint" schema="schema/documentSetup.exsd"/>
   <extension-point id="annotationModelCreation" name="%annotationModelCreationPoint" schema="schema/annotationModelCreation.exsd"/>

   <extension
         id="DefaultDocumentFactory"
         name="%defaultDocumentFactory"
         point="org.eclipse.core.filebuffers.documentCreation">
      <factory
            extensions="*"
            class="org.eclipse.core.internal.filebuffers.DefaultDocumentFactory">
      </factory>
   </extension>

</plugin>

Back to the top