I am developing BPMN2 Editor using GEF . I have BPMN2 EMF Models. When i add SequcenFlow to My Editor it creates fine,But after that i cant able to any more BPMN Shapes in GEF Editor. I got Exception in IndexOutOfBoundsException in that processing getContentPane().add(child, index).

               Thanks.
link|improve this question

12% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Why are you using getContentPane()? your children should be added to the model which is then read by the framework. Can you post some code?

link|improve this answer
Hello Vainolo, Thanks for your reply. I haven't used getContentPane().add(child,index). I added to the model only. getContentPane() this are internal processing of AbstractGraphicalEditPart class. The following will be my code for adding SequenceFlow to Process. final SequenceFlow sequenceFlow = Bpmn2Factory.eINSTANCE .createSequenceFlow(); process.getFlowElements().add(sequenceFlow); – user703834 Aug 16 '11 at 4:09
Can you post some more code? What you sent seems to be OK... – vainolo Aug 18 '11 at 14:00
Hello Vainolo, Thanks for your reply. I fixed that issue. I forget to remove connections from EditParts, getModelChildren() Method. I got this idea after seeing your tutorial closely. Thanks a lot.Can you post Some Tutorials for Properties View and Tabbed Properties View. – user703834 Aug 19 '11 at 13:28
I'm planning. Please accept the answer if you liked my help. – vainolo Aug 21 '11 at 5:11
Hello Vainolo, We will expecting soon your properties view tutorials. – user703834 Aug 22 '11 at 8:48
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.