// specifying the input source //////////////////////////////////////////////
/** specify an input stream as the source for this parse */
public Parse setInputStream(InputStream inputStream) {
this.streamInput = new InputStreamInput(inputStream);
return this;
}