Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Run All Rules as Local
< To: Tigerstripe Extension Points
- Full name : org.eclipse.tigerstripe.workbench.base.runAllRulesAsLocal
Purpose : Used for setting the default value of 'Run All Rules as Local' option under Tigerstripe > Generation preference page. If this extension point is not used, the default option is to turn it off. Only the first implementation of the extension point is taken into account. All subsequent implementations are ignored.
- Usage : There should only be one contribution of this extension point in any eclipse plugin.
- Example :
<plugin> <extension point="org.eclipse.tigerstripe.workbench.base.runAllRulesAsLocal" id="runAllRulesAsLocalDefaulValue" name="Default Value"> <defaultValue value="true"/> </extension> ... </plugin>