mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:08:52 +07:00
Conflicts: java/java-impl/src/com/intellij/refactoring/changeSignature/ChangeSignatureTargetUtil.java plugins/groovy/src/org/jetbrains/plugins/groovy/refactoring/changeSignature/GrChangeSignatureHandler.java
15 lines
490 B
Java
15 lines
490 B
Java
import java.io.EOFException;
|
|
import java.io.IOException;
|
|
import java.io.InterruptedIOException;
|
|
|
|
public interface Idea4780 {
|
|
/**
|
|
* @throws IOException if an I/O error occurs while reading.
|
|
* @throws EOFException if this source is already closed when the <code>read()</code> is called,
|
|
* or is closed during the <code>read()</code>.
|
|
* @throws InterruptedIOException if the reading thread is interrupted.
|
|
*/
|
|
public Object read()
|
|
throws IOException;
|
|
}
|