如何将值传递到视图中

发布于 2024-12-05 21:39:01 字数 60 浏览 1 评论 0原文

我写了一个从文件开始的插件, 我想将文件上下文传递到视图中, 任何人都可以告诉我如何将上下文传递到视图中?

I writed a plugin that start from the file,
I want to pass the file context into a view,
Anybody can tell me how to pass the context into the view?

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

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

发布评论

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

评论(1

凌乱心跳 2024-12-12 21:39:01

通常,您使用“EditorInput”在编辑器之间传递对象。创建一个扩展 EditorInput 的 POJO 类,然后在打开新编辑器时将其作为参数传递:

protected void openSingleObjectEditor(final IEditorInput input,final String editorID){
        IWorkbenchPage page;
        page = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
                .getActivePage();
        try {
            page.openEditor(input, editorID);
        } catch (PartInitException e) {
            e.printStackTrace();
        }
    }

Normally you pass the objects between editors using 'EditorInput'. Create a POJO class extending EditorInput and then pass it as a parameter when you opening a new editor:

protected void openSingleObjectEditor(final IEditorInput input,final String editorID){
        IWorkbenchPage page;
        page = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
                .getActivePage();
        try {
            page.openEditor(input, editorID);
        } catch (PartInitException e) {
            e.printStackTrace();
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文