コード例 #1
0
ファイル: InputSource.cs プロジェクト: sailesh341/JavApi
 /**
  * Set the character stream for this input source.
  *
  * <p>If there is a character stream specified, the SAX parser
  * will ignore any byte stream and will not attempt to open
  * a URI connection to the system identifier.</p>
  *
  * @param characterStream The character stream containing the
  *        XML document or other entity.
  * @see #getCharacterStream
  * @see java.io.Reader
  */
 public void setCharacterStream(java.io.Reader characterStream)
 {
     this.characterStream = characterStream;
 }