Perhaps something like .setGraphElement() / .getGraphElement() on the 'Notation' (or 'UserConfig' or whatever the object is)--that would cover ProcessDefinition, Node, Task, and Transition. At least at the moment, these four core items are the only places I can see a good use for the functionality.
So you might have variations like:
Notation notation = new Notation(GraphElement, namespace, tagName, tagValue);
| ...or...
| Notation notation = new Notation();
| notation.setGraphElement(Transition);
| notation.setTagName(name);
| notation.setTagValue(value);
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055269#4055269
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055269