Interface StreamVisitor
- All Known Subinterfaces:
OutputHandler
,TagHandler
- All Known Implementing Classes:
AllTagHandler
,BaseTagHandler
,StandardTagHandler
,StopHandler
public interface StreamVisitor
Visitor used to read lines of
InputStream
during
read operation.-
Method Summary
-
Method Details
-
readLine
Read line. Result is a boolean and should indicate if instance ofInputStream
has a next line to read.- Parameters:
line
- Line.- Returns:
true
if next line should be read,false
otherwise.
-