Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 58973e088dc5d88e5a4df5c1a02c121927a20bf7 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<!--
    Copyright (c) 2005, 2014 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.core.annotationProcessorManager">
      <annotationProcessorManager
            class="org.eclipse.jdt.internal.apt.pluggable.core.dispatch.IdeAnnotationProcessorManager"
            id="org.eclipse.jdt.apt.pluggable.core.annotationProcessorManager">
      </annotationProcessorManager>
   </extension>
   <extension
         point="org.eclipse.jdt.core.compilationParticipant">
      <compilationParticipant
            class="org.eclipse.jdt.internal.apt.pluggable.core.Apt6CompilationParticipant"
            id="org.eclipse.jdt.apt.pluggable.core.compilationParticipant"
            requiredSourceLevel="1.6">
         <managedMarker
               markerType="org.eclipse.jdt.apt.pluggable.core.compileProblem">
         </managedMarker>
      </compilationParticipant>
   </extension>
   <extension
         id="compileProblem"
         name="%compileProblemMarkerName"
         point="org.eclipse.core.resources.markers">
      <super
            type="org.eclipse.core.resources.problemmarker">
      </super>
      <super
            type="org.eclipse.core.resources.textmarker">
      </super>
      <persistent
            value="true">
      </persistent>
   </extension>
   <extension
         point="org.eclipse.ui.trace.traceComponents">
      <component
            id="org.eclipse.jdt.apt.pluggable.core.trace"
            label="%traceComponentLabel">
         <bundle
               consumed="false"
               name="org.eclipse.jdt.apt.pluggable.core">
         </bundle>
      </component>
   </extension>
</plugin>

Back to the top