I am developing a DMN plugin for JQAssistant (https://github.com/remast/jqa-dmn-plugin). I know how to handle the DMN itself. Now I want to create relations for all Java calls to the DMN decision table.
One way to invoke the decision table in Java is:
DmnDecisionTableResult dishDecisionResult = decisionService.evaluateDecisionTableByKey("dish", variables)
I have figured out how to query all invokations of the method evaluateDecisionTableByKey
. But how can I get access to the parameter "dish"
?
In my DMN plugin I have included a sample application at https://github.com/remast/jqa-dmn-plugin/tree/master/example. The code above is taken from this example. I am trying to link the Java calls to the DMN decision table in the sample application.