< prev index next >

test/javax/xml/jaxp/libs/test/auctionportal/MyDOMOutput.java

Print this page




  91      * @return system identifier.
  92      */
  93     @Override
  94     public String getSystemId() {
  95         return sysId;
  96     }
  97 
  98     /**
  99      * Set writable stream of bytes.
 100      *
 101      * @param bs OutputStream instance
 102      */
 103     @Override
 104     public void setByteStream(OutputStream bs) {
 105         bytestream = bs;
 106     }
 107 
 108     /**
 109      * Set 16 bits unit writable stream.
 110      *
 111      * @param bs a Writer instance
 112      */
 113     @Override
 114     public void setCharacterStream(Writer cs) {
 115         writer = cs;
 116     }
 117 
 118     /**
 119      * Set character encoding to use for the output.
 120      *
 121      * @param encoding encoding set to the output
 122      */
 123     @Override
 124     public void setEncoding(String encoding) {
 125         this.encoding = encoding;
 126     }
 127 
 128     /**
 129      * Set the system identifier for the output.
 130      *
 131      * @param sysId system identifier string.


  91      * @return system identifier.
  92      */
  93     @Override
  94     public String getSystemId() {
  95         return sysId;
  96     }
  97 
  98     /**
  99      * Set writable stream of bytes.
 100      *
 101      * @param bs OutputStream instance
 102      */
 103     @Override
 104     public void setByteStream(OutputStream bs) {
 105         bytestream = bs;
 106     }
 107 
 108     /**
 109      * Set 16 bits unit writable stream.
 110      *
 111      * @param cs a Writer instance
 112      */
 113     @Override
 114     public void setCharacterStream(Writer cs) {
 115         writer = cs;
 116     }
 117 
 118     /**
 119      * Set character encoding to use for the output.
 120      *
 121      * @param encoding encoding set to the output
 122      */
 123     @Override
 124     public void setEncoding(String encoding) {
 125         this.encoding = encoding;
 126     }
 127 
 128     /**
 129      * Set the system identifier for the output.
 130      *
 131      * @param sysId system identifier string.
< prev index next >