Interface DmnTransformListener
public interface DmnTransformListener
Listener for a DMN transformation
-
Method Summary
Modifier and TypeMethodDescriptionvoidtransformDecision(Decision decision, DmnDecision dmnDecision) Notified after a DMN decision was transformedvoidtransformDecisionRequirementsGraph(Definitions definitions, DmnDecisionRequirementsGraph dmnDecisionRequirementsGraph) Notified after a Decision Requirements Graph was transformedvoidtransformDecisionTableInput(Input input, DmnDecisionTableInputImpl dmnInput) Notified after a DMN decision table input was transformedvoidtransformDecisionTableOutput(Output output, DmnDecisionTableOutputImpl dmnOutput) Notified after a DMN decision table output was transformedvoidtransformDecisionTableRule(Rule rule, DmnDecisionTableRuleImpl dmnRule) Notified after a DMN decision table rule was transformed
-
Method Details
-
transformDecision
Notified after a DMN decision was transformed- Parameters:
decision- the decision from the DMN model instancedmnDecision- the transformedDmnDecision
-
transformDecisionTableInput
Notified after a DMN decision table input was transformed- Parameters:
input- the input from the DMN model instancedmnInput- the transformedDmnDecisionTableInputImpl
-
transformDecisionTableOutput
Notified after a DMN decision table output was transformed- Parameters:
output- the output from the DMN model instancedmnOutput- the transformedDmnDecisionTableOutputImpl
-
transformDecisionTableRule
Notified after a DMN decision table rule was transformed- Parameters:
rule- the rule from the DMN model instancedmnRule- the transformedDmnDecisionTableRuleImpl
-
transformDecisionRequirementsGraph
void transformDecisionRequirementsGraph(Definitions definitions, DmnDecisionRequirementsGraph dmnDecisionRequirementsGraph) Notified after a Decision Requirements Graph was transformed- Parameters:
definitions-dmnDecisionGraph-
-