将序列流添加到 BPMN2 编辑器
我正在使用 GEF 开发 BPMN2 编辑器。我有 BPMN2 EMF 模型。当我将 SequencenFlow 添加到我的编辑器时,它创建得很好,但之后我无法在 GEF 编辑器中添加任何更多 BPMN 形状。在处理 getContentPane().add(child, index) 时,我在 IndexOutOfBoundsException 中遇到异常。
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).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么使用
getContentPane()
?您的孩子应该被添加到模型中,然后由框架读取。你能发布一些代码吗?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?