接口 OutputHandler
-
- 所有已知实现类:
DefaultOutputHandler
public interface OutputHandler
Manage user output to different sources.- 版本:
- $Id: OutputHandler.java 2649 2005-10-10 16:51:51Z brett $
- 作者:
- Brett Porter
-
-
方法详细资料
-
write
void write(java.lang.String line) throws java.io.IOException
Write a single line of input, excluding the newline at the end.- 参数:
line
- the line- 抛出:
java.io.IOException
-
writeLine
void writeLine(java.lang.String line) throws java.io.IOException
Write a single line of input, including the newline at the end.- 参数:
line
- the line- 抛出:
java.io.IOException
-
-