Hi
I am currently creating a BPMN diagram using Eclipse plugin. So on a task I can add form properties. When editing the property there are multiple field like id name type etc. There is also a field named Default and one named Variable. How can I retrieve the values of these fields using the API.
Currently I do something like
TaskFormData formData = formService.getTaskFormData(taskId);
List<FormProperty> list = formData.getFormProperties();
for (FormProperty p : list) {
…
}
I thought I could get the value by doing p.getVariable() or p.getType().getInformation("variable");
but looking in the code these are not available.
Any idea why ? is the Eclipse plugin not base on the same code as the FormService ?
Regards
JP