wt.util.xml.xslt
Interface StreamXMLSource

All Superinterfaces:
XMLSource
All Known Subinterfaces:
XSLTransform
All Known Implementing Classes:
AbstractXSLTransform, SerialXSLTransformer, StreamXMLSourceImpl

public interface StreamXMLSource
extends XMLSource

Provide access to XML source data in byte (not character) form that can be read using an java.io.InputStream. Use XMLSourceFactory.newStreamSource(...) for creating new instances from input streams.

Supported API: true

Extendable: false

See Also:
XMLSourceFactory.newStreamSource(java.io.InputStream)

Method Summary
 InputStream getInputStream()
          The input stream that can be read to get the XML data in byte form.
 
Methods inherited from interface wt.util.xml.xslt.XMLSource
getBaseURI
 

Method Detail

getInputStream

public InputStream getInputStream()
                           throws IOException
The input stream that can be read to get the XML data in byte form.

Supported API: true

Returns:
InputStream
Throws:
IOException