OLD | NEW |
1 <?xml version='1.0' encoding='UTF-8'?> | 1 <?xml version='1.0' encoding='UTF-8'?> |
2 <!-- Schema file written by PDE --> | 2 <!-- Schema file written by PDE --> |
3 <schema targetNamespace="com.google.dart.tools.core" xmlns="http://www.w3.org/20
01/XMLSchema"> | 3 <schema targetNamespace="com.google.dart.tools.core" xmlns="http://www.w3.org/20
01/XMLSchema"> |
4 <annotation> | 4 <annotation> |
5 <appInfo> | 5 <appInfo> |
6 <meta.schema plugin="com.google.dart.tools.core" id="buildParticipant"
name="Build Participants"/> | 6 <meta.schema plugin="com.google.dart.tools.core" id="buildParticipant"
name="Build Participants"/> |
7 </appInfo> | 7 </appInfo> |
8 <documentation> | 8 <documentation> |
9 This extension point allows clients to participate in the build process
by receiving notifications during the build, via a com.google.dart.tools.core.b
uilder.BuildParticipant. | 9 This extension point allows clients to participate in the build process
by receiving notifications during the build, via a com.google.dart.tools.core.b
uilder.BuildParticipant. |
10 </documentation> | 10 </documentation> |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 <annotation> | 58 <annotation> |
59 <documentation> | 59 <documentation> |
60 a unique identifier for this participant | 60 a unique identifier for this participant |
61 </documentation> | 61 </documentation> |
62 </annotation> | 62 </annotation> |
63 </attribute> | 63 </attribute> |
64 <attribute name="class" type="string" use="required"> | 64 <attribute name="class" type="string" use="required"> |
65 <annotation> | 65 <annotation> |
66 <documentation> | 66 <documentation> |
67 The class that implements this compilation participant. This
class must implement <code>com.google.dart.tools.core.builder.BuildPartici
pant</code> and provided a public 0-argument constructor. | 67 The class that implements this compilation participant. This
class must implement <code>com.google.dart.tools.core.builder.BuildPartici
pant</code> and provided a public 0-argument constructor. |
68 | |
69 (Deprecated) Classes that implement <code>com.google.dart.tools.core.build
er.DartBuildParticipant</code> rather than the new <code>BuildPartic
ipant</code> interface are currently supported, but this support will be r
emoved sometime in the future. | |
70 </documentation> | 68 </documentation> |
71 <appInfo> | 69 <appInfo> |
72 <meta.attribute kind="java" basedOn=":com.google.dart.tools.co
re.builder.DartBuildParticipant"/> | 70 <meta.attribute kind="java" basedOn=":com.google.dart.tools.co
re.builder.BuildParticipant"/> |
73 </appInfo> | 71 </appInfo> |
74 </annotation> | 72 </annotation> |
75 </attribute> | 73 </attribute> |
76 <attribute name="priority" type="string"> | 74 <attribute name="priority" type="string"> |
77 <annotation> | 75 <annotation> |
78 <documentation> | 76 <documentation> |
79 The priority of this build participant indicating the order in
which participants should be called. A lower number indicates a higher priority
. The default priority is 50. | 77 The priority of this build participant indicating the order in
which participants should be called. A lower number indicates a higher priority
. The default priority is 50. |
80 </documentation> | 78 </documentation> |
81 </annotation> | 79 </annotation> |
82 </attribute> | 80 </attribute> |
(...skipping 17 matching lines...) Expand all Loading... |
100 </buildParticipant> | 98 </buildParticipant> |
101 </extension> | 99 </extension> |
102 </pre> | 100 </pre> |
103 </documentation> | 101 </documentation> |
104 </annotation> | 102 </annotation> |
105 | 103 |
106 | 104 |
107 | 105 |
108 | 106 |
109 </schema> | 107 </schema> |
OLD | NEW |