Java javax.xml.transform.sax SAXSource fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.transform.sax SAXSource fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.transform.sax SAXSource.

The text is from its open source code.

Subclass

javax.xml.transform.sax.SAXSource has subclasses.
Click this link to see all its subclasses.

Field

StringFEATURE
If javax.xml.transform.TransformerFactory#getFeature returns true when passed this value as an argument, the Transformer supports Source input of this type.

Constructor

SAXSource(InputSource inputSource)
Create a SAXSource, using a SAX InputSource.
SAXSource(XMLReader reader, InputSource inputSource)
Create a SAXSource, using an org.xml.sax.XMLReader and a SAX InputSource.
SAXSource()

Zero-argument default constructor.

Method

InputSourcegetInputSource()
Get the SAX InputSource to be used for the Source.
XMLReadergetXMLReader()
Get the XMLReader to be used for the Source.
voidsetInputSource(InputSource inputSource)
Set the SAX InputSource to be used for the Source.
voidsetSystemId(String systemId)
Set the system identifier for this Source.
voidsetXMLReader(XMLReader reader)
Set the XMLReader to be used for the Source.