This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.transform.stax
class StAXSource

java.lang.Object extended by javax.xml.transform.stax.StAXSource
All Implemented Interfaces:
Source

public class StAXSource
extends Object
implements Source

Acts as a holder for an XML {@link Source} in the form of a StAX reader,i.e. {@link XMLStreamReader} or {@link XMLEventReader}. StAXSource can be used in all cases that accept a Source, e.g. {@link javax.xml.transform.Transformer}, {@link javax.xml.validation.Validator} which accept Source as input.

StAXSources are consumed during processing and are not reusable.


Field Summary
static String FEATURE
          If javax.xml.transform.TransformerFactory.getFeature returns true when passed this value as an argument, the Transformer supports Source input of this type.
 
Constructor Summary
StAXSource(XMLEventReader xmlEventReader)

          Creates a new instance of a StAXSource by supplying an javax.xml.stream.XMLEventReader.
StAXSource(XMLStreamReader xmlStreamReader)

          Creates a new instance of a StAXSource by supplying an javax.xml.stream.XMLStreamReader.
 
Method Summary
 String

          Get the system identifier used by this StAXSource.
 XMLEventReader

          Get the XMLEventReader used by this StAXSource.
 XMLStreamReader

          Get the XMLStreamReader used by this StAXSource.
 void
setSystemId(String systemId)

          In the context of a StAXSource, it is not appropriate to explicitly set the system identifier.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FEATURE

public static final String FEATURE
If {@link javax.xml.transform.TransformerFactory#getFeature(String name)} returns true when passed this value as an argument, the Transformer supports Source input of this type.
Constructor Detail

StAXSource

public StAXSource(XMLEventReader xmlEventReader)
           throws XMLStreamException

Creates a new instance of a StAXSource by supplying an {@link XMLEventReader}.

XMLEventReader must be a non-null reference.

XMLEventReader must be in {@link XMLStreamConstants#START_DOCUMENT} or {@link XMLStreamConstants#START_ELEMENT} state.

Parameters:
xmlEventReader - XMLEventReader used to create this StAXSource.
Throws:
XMLStreamException - If xmlEventReader access throws an Exception.

StAXSource

public StAXSource(XMLStreamReader xmlStreamReader)

Creates a new instance of a StAXSource by supplying an {@link XMLStreamReader}.

XMLStreamReader must be a non-null reference.

XMLStreamReader must be in {@link XMLStreamConstants#START_DOCUMENT} or {@link XMLStreamConstants#START_ELEMENT} state.

Parameters:
xmlStreamReader - XMLStreamReader used to create this StAXSource.
Method Detail

getSystemId

public String getSystemId()

Get the system identifier used by this StAXSource.

The XMLStreamReader or XMLEventReader used to construct this StAXSource is queried to determine the system identifier of the XML source.

The system identifier may be null or an empty "" String.

Returns:
System identifier used by this StAXSource.

getXMLEventReader

public XMLEventReader getXMLEventReader()

Get the XMLEventReader used by this StAXSource.

XMLEventReader will be null. if this StAXSource was created with a XMLStreamReader.

Returns:
XMLEventReader used by this StAXSource.

getXMLStreamReader

public XMLStreamReader getXMLStreamReader()

Get the XMLStreamReader used by this StAXSource.

XMLStreamReader will be null if this StAXSource was created with a XMLEventReader.

Returns:
XMLStreamReader used by this StAXSource.

setSystemId

public void setSystemId(String systemId)

In the context of a StAXSource, it is not appropriate to explicitly set the system identifier. The XMLStreamReader or XMLEventReader used to construct this StAXSource determines the system identifier of the XML source.

An {@link UnsupportedOperationException} is always thrown by this method.

Parameters:
systemId - Ignored.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.