Interface RuleCompilerListener
- All Known Implementing Classes:
DefaultRuleCompilerListener,ProductConfigRuleCompilerListener,PromotionRuleCompilerListener
public interface RuleCompilerListener
Interface for receiving notifications about
RuleCompilerContext instances.-
Method Summary
Modifier and TypeMethodDescriptionvoidafterCompile(RuleCompilerContext context) Handles a notification that the compilation for a particularRuleCompilerContexthas just been completed.voidafterCompileError(RuleCompilerContext context) Handles a notification that the compilation for a particularRuleCompilerContextfailed.voidbeforeCompile(RuleCompilerContext context) Handles a notification that the compilation for a particularRuleCompilerContextis about to begin.
-
Method Details
-
beforeCompile
Handles a notification that the compilation for a particularRuleCompilerContextis about to begin.- Parameters:
context- - theRuleCompilerContext
-
afterCompile
Handles a notification that the compilation for a particularRuleCompilerContexthas just been completed.- Parameters:
context- - theRuleCompilerContext
-
afterCompileError
Handles a notification that the compilation for a particularRuleCompilerContextfailed.- Parameters:
context- - theRuleCompilerContext
-