我们可以向 ExtensionRegistry 贡献一个新的plugin.xml吗

发布于 2024-08-05 18:10:15 字数 237 浏览 7 评论 0原文

我有一些额外的 xml 文件(包含标准 eclipse 扩展)位于包之外。有没有办法可以将这些文件中的 extns/extnpoints 贡献给平台的扩展注册表?

我尝试过,

`Platform.getExtensionRegistry.addContribution(..)`

但该方法需要一个 masterToken 对象,我无权访问该对象,如果没有它,它会给我一个异常。

I have a some additional xml files(containing standard eclipse extensions) that lie outside the bundle. Is there a way that I could contribute the extns/extnpoints in those files to the platform's extension registry?

I tried

`Platform.getExtensionRegistry.addContribution(..)`

But the method takes a masterToken object, which I dont have access to, and without which it gives me an exception.

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

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

发布评论

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

评论(1

枯叶蝶 2024-08-12 18:10:15

您必须使用一些内部方法。这是我所做的:

    IExtensionRegistry reg = Platform.getExtensionRegistry();
    Object ut = ((ExtensionRegistry)reg).getTemporaryUserToken();

    IContributor cont = ContributorFactoryOSGi.createContributor(Platform
            .getBundle(editor.getPluginId()));


    if (!reg.addContribution(is, cont, false, null, null, ut))
        Util.impossible("Contribution not added due to error"); //$NON-NLS-1$

You have to use some internal methods. Here is what I do:

    IExtensionRegistry reg = Platform.getExtensionRegistry();
    Object ut = ((ExtensionRegistry)reg).getTemporaryUserToken();

    IContributor cont = ContributorFactoryOSGi.createContributor(Platform
            .getBundle(editor.getPluginId()));


    if (!reg.addContribution(is, cont, false, null, null, ut))
        Util.impossible("Contribution not added due to error"); //$NON-NLS-1$
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文