java - Plugin to add features to "build automatically" and "build all" in eclipse -
i need write plugin in java add custom features "build automatically" , "build all" options in eclipse. more information functionality of builds in eclipse , how modify plugins?
you use incremental project builder this. use org.eclipse.core.resources.builders
extension point define builder.
an example builder (as shown in documentation):
<extension id="coolbuilder" name="cool builder" point="org.eclipse.core.resources.builders"> <builder hasnature="false"> <run class="com.xyz.builders.cool"> <parameter name="optimize" value="true"/> <parameter name="comment" value="produced cool builder"/> </run> </builder> </extension>
if extension defined in plug-in id "com.xyz.coolplugin", qualified name of builder "com.xyz.coolplugin.coolbuilder".
for more information see incremental project builders section of eclipse help.
Comments
Post a Comment