Skip to main content
summaryrefslogtreecommitdiffstats
blob: c24f7f3c141e98f84d1f7c3f66a44b865c27eb4c (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
    Copyright (c) 2005, 2010 IBM Corporation 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:
        IBM Corporation - initial API and implementation
 -->

<plugin>
   <extension
         point="org.eclipse.jdt.apt.core.annotationProcessorFactory">
      <java6processors
            enableDefault="true">
         <java6processor
               class="org.eclipse.jdt.apt.pluggable.tests.processors.genclass6.GenClass6Proc">
         </java6processor>
         <java6processor
               class="org.eclipse.jdt.apt.pluggable.tests.processors.message6.Message6Proc">
         </java6processor>
         <java6processor
               class="org.eclipse.jdt.apt.pluggable.tests.processors.filertester.FilerTesterProc">
         </java6processor>
         <java6processor
               class="org.eclipse.jdt.apt.pluggable.tests.processors.buildertester.InheritedAnnoProc">
         </java6processor>
         <java6processor
               class="org.eclipse.jdt.apt.pluggable.tests.processors.modeltester.ModelTesterProc">
         </java6processor>
      </java6processors>
   </extension>
</plugin>

Back to the top