Hi all,
I wanted to create a propertyTab for my custom task where i find my parameters as the folowing tutorial of BPMN2-Modeler/DeveloperTutorials/ModelExtensionBYOM https://wiki.eclipse.org/BPMN2-Modeler/DeveloperTutorials/ModelExtensionBYOM
i created a propertySection class
public class MyTaskPropertySection extends DefaultPropertySection
and
public class MyTaskDetailComposite extends DefaultDetailComposite {
where there is the method public void createBindings(EObject be) where we find
// Display the Parameters list in TaskConfig
bindList(taskConfig, MyModelPackage.eINSTANCE.getTaskConfig_Parameters());
when i Run my plug in and i press the '+' button of my new property tab i got this internal error:
can not create a new TaskConfig.Parameter because the list is not a container. the default addListItem() method must be implemented
I can't manage to find my mistake.
Have someone an idea what can be the problem?
thank you!