我已经创建了自定义视图,并在TextConsoleViewer
查看器的帮助下将控制台置于其上。
它出现在我的视图中,但它也出现在主控制台视图上,它也出现在布局上。
如何避免这种情况?如何仅在我的视图上放置控制台,或者可能是,可以在控制台视图上隐藏不需要的控制台?
查看部分的代码:
public class ChatView extends ViewPart {
public static final String ID = "com.scisbo.eclipse.programw.ChatView";
private ShellMod shell;
private TextConsoleViewer textConsoleViewer;
@Override
public void createPartControl(Composite parent) {
ConsoleFinderService consoleFinderService = (ConsoleFinderService) PlatformUI.getWorkbench().getService(ConsoleFinderService.class);
MessageConsole console = consoleFinderService.findConsole("Chat");
textConsoleViewer = new TextConsoleViewer(parent, console);
shell = new ShellMod(
new PrintStream(console.newMessageStream()),
new PrintStream(console.newMessageStream())
);
}
@Override
public void setFocus() {
textConsoleViewer.getControl().setFocus();
}
}
控制台查找服务的代码
public class ConsoleFinderService {
public 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;
}
}
答案 0 :(得分:-1)
不要将控制台添加到控制台管理器。 (如果您确实需要经理,您可能希望实施一个单独的经理。)