eclipse_customization.ini 文件以及应用程序和产品之间的区别

发布于 2024-09-15 00:46:37 字数 477 浏览 15 评论 0原文

在开发 Eclipse 插件时,我们使用一个名为 plugin_customization.ini 的文件,

我想知道在哪里可以找到有关可以在该文件的帮助下设置哪些设置的详细信息?

另一个问题是当产品品牌化和在 plugin.xml 文件中定义扩展点时 我们可以通过标签产品或标签提供商来定义扩展点!有什么区别!如果我像这样使用

<extension point="org.eclipse.core.runtime.products">        
     <provider> 
       <run class="Test"/> 
     </provider> 
</extension>

我可以做产品品牌吗?

感谢您的帮助

When developing an eclipse plugin, we are using a file named plugin_customization.ini

I wonder where I can find detailed information about which setting can be set with help of this file?

Another question is when product branding and defining an extension point in plugin.xml file
we can define the extension point by the tag product or by the tag provider! What are differences! And if I am using <provider> like this

<extension point="org.eclipse.core.runtime.products">        
     <provider> 
       <run class="Test"/> 
     </provider> 
</extension>

can I do product branding?

Thanks for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

往事风中埋 2024-09-22 00:46:43

本文提供了有关使用plugin_customization.ini 文件的一些信息。

对于您的另一个问题:提供商定义了已安装的产品。这使其成为已安装产品扩展的代理。
您可以对 org.eclipse.core.runtime.IProductProvider 接口进行一些研究以获取更多信息。

This article provides some information about using the plugin_customization.ini file.

To your other question: A provider defines an installed product. This makes it a proxy for the extension of an installed product.
You can do some research on the org.eclipse.core.runtime.IProductProvider interface to get more information on this.

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