1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

add throws CoreException on getStream....

This commit is contained in:
David Inglis 2004-06-03 15:16:56 +00:00
parent 965f0a205d
commit 4d51a02662

View file

@ -7,12 +7,13 @@ package org.eclipse.cdt.core.resources;
import org.eclipse.cdt.core.ConsoleOutputStream; import org.eclipse.cdt.core.ConsoleOutputStream;
import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
public interface IConsole { public interface IConsole {
void start(IProject project); void start(IProject project);
ConsoleOutputStream getOutputStream(); ConsoleOutputStream getOutputStream() throws CoreException;
ConsoleOutputStream getInfoStream(); ConsoleOutputStream getInfoStream() throws CoreException;
ConsoleOutputStream getErrorStream(); ConsoleOutputStream getErrorStream() throws CoreException;
} }