Package org.jboss.windup.config.builder
Interface RuleProviderBuilderAddDependencies
-
- All Known Implementing Classes:
RuleProviderBuilder
public interface RuleProviderBuilderAddDependencies- Author:
- Jesse Sightler, Lincoln Baxter, III
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuleProviderBuilderAddDependenciesaddExecuteAfter(Class<? extends AbstractRuleProvider> type)Indicates that the current ruleset should execute after the ruleset with the typeRuleProviderBuilderAddDependenciesaddExecuteAfter(String id)Indicates that the current ruleset should execute after the ruleset with the given idRuleProviderBuilderAddDependenciesaddExecuteBefore(Class<? extends AbstractRuleProvider> type)Indicates that the current ruleset should execute before the ruleset with the typeRuleProviderBuilderAddDependenciesaddExecuteBefore(String id)Indicates that the current ruleset should execute before the ruleset with the given idorg.ocpsoft.rewrite.config.ConfigurationRuleBuilderCustomaddRule()Begin defining aRuleinstance.org.ocpsoft.rewrite.config.ConfigurationRuleBuilderCustomaddRule(org.ocpsoft.rewrite.config.Rule rule)Begin enhancing aRuleinstance based on the givenRule.
-
-
-
Method Detail
-
addExecuteAfter
RuleProviderBuilderAddDependencies addExecuteAfter(String id)
Indicates that the current ruleset should execute after the ruleset with the given id
-
addExecuteAfter
RuleProviderBuilderAddDependencies addExecuteAfter(Class<? extends AbstractRuleProvider> type)
Indicates that the current ruleset should execute after the ruleset with the type
-
addExecuteBefore
RuleProviderBuilderAddDependencies addExecuteBefore(String id)
Indicates that the current ruleset should execute before the ruleset with the given id
-
addExecuteBefore
RuleProviderBuilderAddDependencies addExecuteBefore(Class<? extends AbstractRuleProvider> type)
Indicates that the current ruleset should execute before the ruleset with the type
-
addRule
org.ocpsoft.rewrite.config.ConfigurationRuleBuilderCustom addRule()
Begin defining aRuleinstance.
-
addRule
org.ocpsoft.rewrite.config.ConfigurationRuleBuilderCustom addRule(org.ocpsoft.rewrite.config.Rule rule)
Begin enhancing aRuleinstance based on the givenRule.
-
-