Movatterモバイル変換


[0]ホーム

URL:


         


Class SAXSource

java.lang.Object  |  +--javax.xml.transform.sax.SAXSource
All Implemented Interfaces:
Source

public classSAXSource
extends java.lang.Object
implementsSource

Acts as an holder for SAX-style Source.


FEATURE
          IfTransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Source input of this type.
 
SAXSource()
          Zero-argument default constructor.
SAXSource(InputSource inputSource)
          Create aSAXSource, using a SAXInputSource.
SAXSource(XMLReader reader,InputSource inputSource)
          Create aSAXSource, using anXMLReader and a SAX InputSource.
 
getInputSource()
          Get the SAX InputSource to be used for the Source.
getSystemId()
          Get the base ID (URI or system ID) from where URIs will be resolved.
getXMLReader()
          Get the XMLReader to be used for the Source.
setInputSource(InputSource inputSource)
          Set the SAX InputSource to be used for the Source.
setSystemId(java.lang.String systemId)
          Set the system identifier for this Source.
setXMLReader(XMLReader reader)
          Set the XMLReader to be used for the Source.
sourceToInputSource(Source source)
          Attempt to obtain a SAX InputSource object from a TrAX Source object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

FEATURE

public static final java.lang.StringFEATURE
IfTransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Source input of this type.

SAXSource

publicSAXSource()
Zero-argument default constructor. If this constructor is used, and no other method is called, theTransformer assumes an empty input tree, with a default root node.

SAXSource

publicSAXSource(XMLReader reader,InputSource inputSource)
Create aSAXSource, using anXMLReader and a SAX InputSource. TheTransformer orSAXTransformerFactory will set itself to be the reader'sContentHandler, and then will call reader.parse(inputSource).
Parameters:
reader - An XMLReader to be used for the parse.
inputSource - A SAX input source reference that must be non-null and that will be passed to the reader parse method.

SAXSource

publicSAXSource(InputSource inputSource)
Create aSAXSource, using a SAXInputSource. TheTransformer orSAXTransformerFactory creates a reader viaXMLReaderFactory (if setXMLReader is not used), sets itself as the reader'sContentHandler, and calls reader.parse(inputSource).
Parameters:
inputSource - An input source reference that must be non-null and that will be passed to the parse method of the reader.

setXMLReader

public voidsetXMLReader(XMLReader reader)
Set the XMLReader to be used for the Source.
Parameters:
reader - A valid XMLReader or XMLFilter reference.

getXMLReader

publicXMLReadergetXMLReader()
Get the XMLReader to be used for the Source.
Returns:
A valid XMLReader or XMLFilter reference, or null.

setInputSource

public voidsetInputSource(InputSource inputSource)
Set the SAX InputSource to be used for the Source.
Parameters:
inputSource - A valid InputSource reference.

getInputSource

publicInputSourcegetInputSource()
Get the SAX InputSource to be used for the Source.
Returns:
A valid InputSource reference, or null.

setSystemId

public voidsetSystemId(java.lang.String systemId)
Set the system identifier for this Source. If an input source has already been set, it will set the system ID or that input source, otherwise it will create a new input source.

The system identifier is optional if there is a byte stream or a character stream, but it is still useful to provide one, since the application can use it to resolve relative URIs and can include it in error messages and warnings (the parser will attempt to open a connection to the URI only if no byte stream or character stream is specified).

Specified by:
setSystemId in interfaceSource
Parameters:
systemId - The system identifier as a URI string.

getSystemId

public java.lang.StringgetSystemId()
Get the base ID (URI or system ID) from where URIs will be resolved.
Specified by:
getSystemId in interfaceSource
Returns:
Base URL for the Source, or null.

sourceToInputSource

public staticInputSourcesourceToInputSource(Source source)
Attempt to obtain a SAX InputSource object from a TrAX Source object.
Parameters:
source - Must be a non-null Source reference.
Returns:
An InputSource, or null if Source can not be converted.

         


[8]ページ先頭

©2009-2025 Movatter.jp