* @throws IOException If there is an error reading the input stream.
*/
public BaseParser(InputStream input, boolean forceParsingValue)
throws IOException
{
this.pdfSource = new PushBackInputStream(
new BufferedInputStream(input, 16384), Integer.getInteger( PROP_PUSHBACK_SIZE, 65536 ) );
this.forceParsing = forceParsingValue;
}