/******************************************************************************* * Copyright (c) 2002, 2015 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.internal.autotools.ui; import org.eclipse.cdt.core.ConsoleOutputStream; import org.eclipse.cdt.core.resources.IConsole; import org.eclipse.cdt.ui.CUIPlugin; import org.eclipse.cdt.ui.IBuildConsoleManager; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; public class Console implements IConsole { IProject project; IBuildConsoleManager fConsoleManager; public Console(String consoleName, String contextId) { fConsoleManager = CUIPlugin.getDefault().getConsoleManager(consoleName, contextId); } @Override public void start(IProject project ) { this.project = project; fConsoleManager.getConsole(project).start(project); } /** * @throws CoreException * @see org.eclipse.cdt.core.resources.IConsole#getOutputStream() */ @Override public ConsoleOutputStream getOutputStream() throws CoreException { return fConsoleManager.getConsole(project).getOutputStream(); } @Override public ConsoleOutputStream getInfoStream() throws CoreException { return fConsoleManager.getConsole(project).getInfoStream(); } @Override public ConsoleOutputStream getErrorStream() throws CoreException { return fConsoleManager.getConsole(project).getErrorStream(); } }