Constructor and Description |
---|
XMLAttributes()
Creates a new, empty
XMLAttributes object. |
XMLAttributes(XMLAttributes orig)
Copy constructor; creates a copy of this
XMLAttributes object. |
XMLError()
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId,
String details)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId,
String details,
long line)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId,
String details,
long line,
long column)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId,
String details,
long line,
long column,
long severity)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(int errorId,
String details,
long line,
long column,
long severity,
long category)
Creates a new
XMLError to report that something occurred during XML
processing. |
XMLError(XMLError orig)
Copy constructor; creates a copy of this
XMLError . |
XMLNamespaces()
Creates a new empty list of XML namespace declarations.
|
XMLNamespaces(XMLNamespaces orig)
Copy constructor; creates a copy of this
XMLNamespaces list. |
XMLNode()
Creates a new empty
XMLNode with no children. |
XMLNode(String chars)
Creates a text
XMLNode . |
XMLNode(String chars,
long line)
Creates a text
XMLNode . |
XMLNode(String chars,
long line,
long column)
Creates a text
XMLNode . |
XMLNode(XMLNode orig)
Copy constructor; creates a copy of this
XMLNode . |
XMLNode(XMLToken token)
|
XMLNode(XMLTriple triple)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
long line)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
long line,
long column)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
XMLAttributes attributes)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
long line)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
long line,
long column)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLOutputStream(OStream stream)
Creates a new
XMLOutputStream that wraps the given stream . |
XMLOutputStream(OStream stream,
String encoding)
Creates a new
XMLOutputStream that wraps the given stream . |
XMLOutputStream(OStream stream,
String encoding,
boolean writeXMLDecl)
Creates a new
XMLOutputStream that wraps the given stream . |
XMLOutputStream(OStream stream,
String encoding,
boolean writeXMLDecl,
String programName)
Creates a new
XMLOutputStream that wraps the given stream . |
XMLOutputStream(OStream stream,
String encoding,
boolean writeXMLDecl,
String programName,
String programVersion)
Creates a new
XMLOutputStream that wraps the given stream . |
XMLToken()
Creates a new empty
XMLToken object. |
XMLToken(String chars)
Creates a text object.
|
XMLToken(String chars,
long line)
Creates a text object.
|
XMLToken(String chars,
long line,
long column)
Creates a text object.
|
XMLToken(XMLToken orig)
Copy constructor; creates a copy of this
XMLToken object. |
XMLToken(XMLTriple triple)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
long line)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
long line,
long column)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
long line)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
long line,
long column)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates an XML start element with attributes and namespace declarations.
|