我可以将我的plugin.xml 文件的各个部分分成多个用于Eclipse 插件的xml 文件吗?
我创建了一个 Eclipse 插件,带有一个plugin.xml 文件。我已经创建了 org.eclipse.wst.common.snippets.SnippetContributions 扩展点的扩展。这个扩展点的 xml 内容变得非常大。有没有办法可以将片段扩展的内容移动到单独的文件中?像这样的:
在plugin.xml中:
<extension point="org.eclipse.wst.common.snippets.SnippetContributions" file="snippets.xml"></extenstion>
和在snippets.xml中:
<category ....>
<item..../item>
</category>...
I have created an eclipse plugin, with a plugin.xml file. I have created an extension to the org.eclipse.wst.common.snippets.SnippetContributions extension point. The xml contents of this extension point has gotten really big. Is there a way that I can move the contents of my snippets extension to a separate file? Something like this:
In plugin.xml:
<extension point="org.eclipse.wst.common.snippets.SnippetContributions" file="snippets.xml"></extenstion>
and in snippets.xml:
<category ....>
<item..../item>
</category>...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,这是不可能的。
Unfortunately, this is not possible.