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:
parent
965f0a205d
commit
4d51a02662
1 changed files with 4 additions and 3 deletions
|
@ -7,12 +7,13 @@ package org.eclipse.cdt.core.resources;
|
|||
|
||||
import org.eclipse.cdt.core.ConsoleOutputStream;
|
||||
import org.eclipse.core.resources.IProject;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
|
||||
|
||||
public interface IConsole {
|
||||
void start(IProject project);
|
||||
ConsoleOutputStream getOutputStream();
|
||||
ConsoleOutputStream getInfoStream();
|
||||
ConsoleOutputStream getErrorStream();
|
||||
ConsoleOutputStream getOutputStream() throws CoreException;
|
||||
ConsoleOutputStream getInfoStream() throws CoreException;
|
||||
ConsoleOutputStream getErrorStream() throws CoreException;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue