void |
XMLEventListener.attribute(java.lang.String name,
java.lang.String value) |
Adds an attribute to the current element.
|
void |
XMLEventListener.cdata(java.lang.String text) |
Notification of a CDATA section.
|
static void |
XMLChecker.checkName(char[] ch,
int start,
int length) |
Checks if the specified part of a character array matches the
Name production.
|
static void |
XMLChecker.checkName(java.lang.String s) |
Checks if the specified string matches the Name production.
|
static void |
XMLChecker.checkPubidLiteral(char[] ch,
int start,
int length) |
Checks if the specified part of a character array matches the
PubidLiteral production.
|
static void |
XMLChecker.checkPubidLiteral(java.lang.String s) |
Checks if the specified string matches the PubidLiteral
production.
|
static void |
XMLChecker.checkS(char[] ch,
int start,
int length) |
Checks if the specified part of a character array matches the S
(white space) production.
|
static void |
XMLChecker.checkSystemLiteral(char[] ch,
int start,
int length) |
Checks if the specified part of a character array matches the
SystemLiteral production.
|
static void |
XMLChecker.checkSystemLiteral(java.lang.String s) |
Checks if the specified string matches the SystemLiteral
production.
|
void |
XMLEventListener.comment(java.lang.String text) |
Notification of a comment.
|
void |
XMLOutputter.comment(java.lang.String text) |
Writes the specified comment.
|
void |
XMLEventListener.dtd(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
Notification of a document type declaration.
|
void |
XMLOutputter.dtd(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
Writes a document type declaration.
|
void |
XMLEventListener.pcdata(char[] ch,
int start,
int length) |
Notification of a PCDATA section (as a char array).
|
void |
XMLEventListener.pcdata(java.lang.String text) |
Notification of a PCDATA section (as a String).
|
void |
XMLOutputter.pcdata(char[] ch,
int start,
int length) |
Writes the specified character array as PCDATA.
|
void |
XMLOutputter.pcdata(java.lang.String text) |
Writes the specified String as PCDATA.
|
void |
XMLEventListener.pi(java.lang.String target,
java.lang.String instruction) |
Notification of a processing instruction.
|
void |
XMLEventListener.startTag(java.lang.String type) |
Notification of an element start tag.
|
void |
XMLEncoder.text(java.io.Writer out,
char c) |
Deprecated.
|
void |
XMLEncoder.text(java.io.Writer out,
char[] ch,
int start,
int length,
boolean escapeAmpersands) |
Writes text from the specified character array.
|
void |
XMLEncoder.text(java.io.Writer out,
char c,
boolean escapeAmpersands) |
Writes the specified character.
|
void |
XMLEncoder.text(java.io.Writer out,
java.lang.String text,
boolean escapeAmpersands) |
Writes the specified text.
|
void |
XMLEncoder.whitespace(java.io.Writer out,
char[] ch,
int start,
int length) |
Writes whitespace from the specified character array.
|
void |
XMLEncoder.whitespace(java.io.Writer out,
java.lang.String s) |
Writes the specified whitespace string.
|
void |
XMLEventListener.whitespace(char[] ch,
int start,
int length) |
Notification of ignorable whitespace (as a String).
|
void |
XMLEventListener.whitespace(java.lang.String whitespace) |
Notification of ignorable whitespace (as a String).
|
void |
XMLOutputter.whitespace(char[] ch,
int start,
int length) |
Writes text from the specified character array as ignorable whitespace.
|
void |
XMLOutputter.whitespace(java.lang.String whitespace) |
Writes the specified ignorable whitespace.
|