Interface DmnTransformListener
public interface DmnTransformListener
Listener for a DMN transformation
-
Method Summary
Modifier and TypeMethodDescriptionvoid
transformDecision
(Decision decision, DmnDecision dmnDecision) Notified after a DMN decision was transformedvoid
transformDecisionRequirementsGraph
(Definitions definitions, DmnDecisionRequirementsGraph dmnDecisionRequirementsGraph) Notified after a Decision Requirements Graph was transformedvoid
transformDecisionTableInput
(Input input, DmnDecisionTableInputImpl dmnInput) Notified after a DMN decision table input was transformedvoid
transformDecisionTableOutput
(Output output, DmnDecisionTableOutputImpl dmnOutput) Notified after a DMN decision table output was transformedvoid
transformDecisionTableRule
(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
-
-