blob: f6e698796723efa5848447b5511d1fe2427c3cbe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2011 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Alex Collins (Broadcom Corp.) - Global console
*******************************************************************************/
package org.eclipse.cdt.ui;
import org.eclipse.cdt.core.resources.IConsole;
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.text.IDocument;
/**
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IBuildConsoleManager {
/**
* @return the console to which build output should be printed.
* This may be backed by two console documents: one for the Project
* and one Global
*/
IConsole getConsole(IProject project);
/**
* @return the console associated with the specified project
* @since 5.3
*/
IConsole getProjectConsole(IProject project);
/**
* @param project
* @return IDocument backing the console for the given project
*/
IDocument getConsoleDocument(IProject project);
IProject getLastBuiltProject();
void addConsoleListener(IBuildConsoleListener listener);
void removeConsoleListener(IBuildConsoleListener listener);
}