Editor EclipseRCP-隐藏编辑器

Editor EclipseRCP-隐藏编辑器,editor,eclipse-rcp,Editor,Eclipse Rcp,我遵循并创建了一个应用程序,如下所示: 我的观点被明确地添加到透视图中。 下面的编辑器默认在那里 问题: 如何禁用默认编辑器? 上图中的工作台和透视图在哪里? 在你看来 public void createInitialLayout(IPageLayout layout) { this.layout = layout; String editorAreaId = layout.getEditorArea(); layout.setEditorAr

我遵循并创建了一个应用程序,如下所示:

我的观点被明确地添加到透视图中。 下面的编辑器默认在那里

问题:

如何禁用默认编辑器? 上图中的工作台和透视图在哪里? 在你看来

public void createInitialLayout(IPageLayout layout) {
        this.layout = layout;

        String editorAreaId = layout.getEditorArea();
        layout.setEditorAreaVisible(false);
}
这将禁用透视图中的编辑器

public void createInitialLayout(IPageLayout layout) {
        this.layout = layout;

        String editorAreaId = layout.getEditorArea();
        layout.setEditorAreaVisible(false);
}
这将禁用您的编辑器