Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

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>

Back to the top