Skip to main content
summaryrefslogtreecommitdiffstats
blob: 682470107820850823fcdd2632ffdfe0a05a1a3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

   <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