|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.batik.transcoder.TranscoderInput
This class represents a generic input of a Transcoder.
Field Summary | |
protected Document |
document
The optional input as XML Document. |
protected java.io.InputStream |
istream
The optional input has a byte stream. |
protected java.io.Reader |
reader
The optional input as a character stream. |
protected java.lang.String |
uri
The optional input as a URI. |
protected XMLReader |
xmlReader
The optional XML reader to receive SAX events. |
Constructor Summary | |
TranscoderInput()
Constructs a new empty TranscoderInput. |
|
TranscoderInput(Document document)
Constructs a new TranscoderInput with the specified Document. |
|
TranscoderInput(java.io.InputStream istream)
Constructs a new TranscoderInput with the specified byte stream input. |
|
TranscoderInput(java.io.Reader reader)
Constructs a new TranscoderInput with the specified character stream. |
|
TranscoderInput(java.lang.String uri)
Constructs a new TranscoderInput with the specified uri. |
|
TranscoderInput(XMLReader xmlReader)
Constructs a new TranscoderInput with the specified XML reader. |
Method Summary | |
Document |
getDocument()
Returns the input of this transcoder as a document or null if none was supplied. |
java.io.InputStream |
getInputStream()
Returns the input of this transcoder as a byte stream or null if none was supplied. |
java.io.Reader |
getReader()
Returns the input of this transcoder as a character stream or null if none was supplied. |
java.lang.String |
getURI()
Returns the input of this transcoder as a URI or null if none was supplied. |
XMLReader |
getXMLReader()
Returns the XML reader of this transcoder or null if none was supplied. |
void |
setDocument(Document document)
Sets the input of this transcoder input with the specified document. |
void |
setInputStream(java.io.InputStream istream)
Sets the input of this transcoder input with the specified byte stream. |
void |
setReader(java.io.Reader reader)
Sets the input of this transcoder input with the specified character stream. |
void |
setURI(java.lang.String uri)
Sets the input of this transcoder input with the specified URI. |
void |
setXMLReader(XMLReader xmlReader)
Sets the input of this transcoder input with the specified XML reader. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected XMLReader xmlReader
protected java.io.InputStream istream
protected java.io.Reader reader
protected Document document
protected java.lang.String uri
Constructor Detail |
public TranscoderInput()
public TranscoderInput(XMLReader xmlReader)
xmlReader
- the XML reader of this transcoder inputpublic TranscoderInput(java.io.InputStream istream)
istream
- the byte stream of this transcoder inputpublic TranscoderInput(java.io.Reader reader)
reader
- the character stream of this transcoder inputpublic TranscoderInput(Document document)
document
- the Document of this transcoder inputpublic TranscoderInput(java.lang.String uri)
uri
- the URI of this transcoder inputMethod Detail |
public void setXMLReader(XMLReader xmlReader)
xmlReader
- the XML reader of this transcoder inputpublic XMLReader getXMLReader()
public void setInputStream(java.io.InputStream istream)
istream
- the byte stream of this transcoder inputpublic java.io.InputStream getInputStream()
public void setReader(java.io.Reader reader)
reader
- the character stream of this transcoder inputpublic java.io.Reader getReader()
public void setDocument(Document document)
document
- the document of this transcoder inputpublic Document getDocument()
public void setURI(java.lang.String uri)
uri
- the URI of this transcoder inputpublic java.lang.String getURI()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |