01: /*
02: * @(#)LineProcessor.java 1.2 04/12/06
03: *
04: * Copyright (c) 2002,2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.text;
10:
11: import java.io.*;
12:
13: public interface LineProcessor {
14: public int processAll(boolean includeNewLine) throws IOException;
15: }
|