在Eclipse-Kepler(RCP)中创建控制台视图

时间:2013-10-23 20:37:29

标签: eclipse-rcp

我正在学习如何开发RCP应用程序。我需要做的任务之一是创建一个控制台视图。我做了一些搜索,我发现了以下代码段,据说可以创建一个控制台视图:

@PostConstruct
public void createComposite(Composite parent) {
    MessageConsole myConsole = findConsole("abc");// CONSOLE_NAME);
    MessageConsoleStream out = myConsole.newMessageStream();
    out.println("Hello from Generic console sample action");

    IWorkbench wb = PlatformUI.getWorkbench();
    IWorkbenchWindow win = wb.getActiveWorkbenchWindow();
    IWorkbenchPage page = win.getActivePage();
    String id = IConsoleConstants.ID_CONSOLE_VIEW;
    IConsoleView view = null;
    try {
        view = (IConsoleView) page.showView(id);
    } catch (PartInitException e) {
        e.printStackTrace();
    }
    view.display(myConsole);
}

private MessageConsole findConsole(String name) {
    ConsolePlugin plugin = ConsolePlugin.getDefault();
    IConsoleManager conMan = plugin.getConsoleManager();
    IConsole[] existing = conMan.getConsoles();
    for (int i = 0; i < existing.length; i++)
        if (name.equals(existing[i].getName()))
            return (MessageConsole) existing[i];
    // no console found, so create a new one
    MessageConsole myConsole = new MessageConsole(name, null);
    conMan.addConsoles(new IConsole[] { myConsole });
    return myConsole;
}

但我一直收到以下错误:

org.eclipse.e4.core.di.InjectionException:java.lang.IllegalStateException:尚未创建Workbench。

我尝试按照本文中发布的建议(http://waheedtechblog.blogspot.com/2011/11/javalangillegalstateexception-workbench.html),但无济于事。

我的问题如下。

1)为了解决上述错误应该怎么做?

2)鉴于Eclipse开发环境的丰富性,是否有更好的方法可以用更少的编程工作来实现同样的目标(例如Toggle the view of the Console in a RCP application)?

对此的任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

如果要在RCP中运行现有的Eclipse工作台代码,则需要在应用程序中正确设置工作台。

您可以将产品定义基于现有的org.eclipse.ui.ide.workbench应用程序:

<extension id="product" point="org.eclipse.core.runtime.products"> 
  <product application="org.eclipse.ui.ide.workbench" name="name"/>
  ...

或者你可以致电

PlatformUI.createAndRunWorkbench(display, advisor);

在您的IApplication实施中,但您必须至少完成org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor完成的部分工作才能使事情正常运行。