如何直接在 GMF .gmfgen 文件中添加新的元素/调色板组件

发布于 2024-11-26 14:51:14 字数 153 浏览 2 评论 0原文

我创建了一个完整的模型,然后获取了图表生成的代码。现在我意识到我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活泼老夫 2024-12-03 14:51:14

你到底是什么意思?您是否担心丢失对生成的源代码所做的修改?如果是这种情况,您可以添加 @ generated NOT 标记来阻止生成函数。

/**
 * @generated NOT
 */
void foo() {...}

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.

/**
 * @generated NOT
 */
void foo() {...}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文