如何直接在 GMF .gmfgen 文件中添加新的元素/调色板组件
我创建了一个完整的模型,然后获取了图表生成的代码。现在我意识到我需要在 Palette 中添加更多组件。 但我已经对已经生成的代码进行了很多修改。 因此,如果我重复所有步骤,大多数情况下我会丢失所有更改。那么有没有办法在 Palette 中添加新组件或引入新元素,而无需从初始周期开始开发。
I have created a entire model and then got the diagram generated code. Now I realized that I need to add more components in Palette.
But I have already carried out lot of modifications in the already generated Code.
So if I repeat all the steps, mostly I am gonna loose all my changes. So is there any way to add new components or introduce new element inside Palette without developing from initial cycle.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你到底是什么意思?您是否担心丢失对生成的源代码所做的修改?如果是这种情况,您可以添加
@ generated NOT
标记来阻止生成函数。What do you mean exactly? Is it that you're afraid of losing modifications you did to the generated source code? If that's the case you can prevent a function from being generated adding the
@generated NOT
tag.