xtext で Eclipse プラグインを開発しましたが、コンソールにいくつかのメッセージを書き込む必要があります。そのために、私はこのサイトhttp://wiki.eclipse.org/FAQ_How_do_I_write_to_the_console_from_a_plug-in%3Fを見て、このコードを実装しました:
private static MessageConsole findConsole(String name) {
if (ConsolePlugin.getDefault() == null)
return null;
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())) {
conMan.showConsoleView(existing[i]);
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;
}
public MessageConsoleStream getMessageStream() {
MessageConsole myConsole = findConsole("console");
if (myConsole != null) {
IWorkbench wb = PlatformUI.getWorkbench();
IWorkbenchWindow win = wb.getActiveWorkbenchWindow();
IWorkbenchPage page = win.getActivePage();
String id = IConsoleConstants.ID_CONSOLE_VIEW;
IConsoleView view;
try {
view = (IConsoleView) page.showView(id);
view.display(myConsole);
return myConsole.newMessageStream();
} catch (PartInitException e) {
e.printStackTrace();
}
}
return null;
}
plugin.xml > 依存関係 > 必要なプラグインに org.eclipse.ui.console を追加しました。
メッセージを出力したいとき: MessageConsoleStream out = getMessageStream(); out.println(...);
そしてそれは働いています。しかし、コンソールに「終了ボタン」が必要で、このコードでは不十分なようです。どうやってやるの?ありがとう。