Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.core/schema/buildParticipants.exsd

Issue 11415253: Refactored analysis into a build participant (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 &lt;code&gt;com.google.dart.tools.core.builder.BuildPartici pant&lt;/code&gt; and provided a public 0-argument constructor. 67 The class that implements this compilation participant. This class must implement &lt;code&gt;com.google.dart.tools.core.builder.BuildPartici pant&lt;/code&gt; and provided a public 0-argument constructor.
68
69 (Deprecated) Classes that implement &lt;code&gt;com.google.dart.tools.core.build er.DartBuildParticipant&lt;/code&gt; rather than the new &lt;code&gt;BuildPartic ipant&lt;/code&gt; 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
100 &lt;/buildParticipant&gt; 98 &lt;/buildParticipant&gt;
101 &lt;/extension&gt; 99 &lt;/extension&gt;
102 &lt;/pre&gt; 100 &lt;/pre&gt;
103 </documentation> 101 </documentation>
104 </annotation> 102 </annotation>
105 103
106 104
107 105
108 106
109 </schema> 107 </schema>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698