|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InvalidXMLException | |
org.znerd.xmlenc | Xmlenc, the fast XML output library. |
Uses of InvalidXMLException in org.znerd.xmlenc |
Methods in org.znerd.xmlenc that throw InvalidXMLException | |
void |
XMLOutputter.dtd(String name,
String publicID,
String systemID)
Writes a document type declaration. |
void |
XMLOutputter.pcdata(String text)
Writes the specified String as PCDATA. |
void |
XMLOutputter.pcdata(char[] ch,
int start,
int length)
Writes the specified character array as PCDATA. |
void |
XMLOutputter.whitespace(String whitespace)
Writes the specified ignorable whitespace. |
void |
XMLOutputter.whitespace(char[] ch,
int start,
int length)
Writes text from the specified character array as ignorable whitespace. |
void |
XMLOutputter.comment(String text)
Writes the specified comment. |
void |
XMLEventListener.dtd(String name,
String publicID,
String systemID)
Notification of a document type declaration. |
void |
XMLEventListener.startTag(String type)
Notification of an element start tag. |
void |
XMLEventListener.attribute(String name,
String value)
Adds an attribute to the current element. |
void |
XMLEventListener.pcdata(String text)
Notification of a PCDATA section (as a String ). |
void |
XMLEventListener.pcdata(char[] ch,
int start,
int length)
Notification of a PCDATA section (as a char array). |
void |
XMLEventListener.cdata(String text)
Notification of a CDATA section. |
void |
XMLEventListener.whitespace(String whitespace)
Notification of ignorable whitespace (as a String ). |
void |
XMLEventListener.whitespace(char[] ch,
int start,
int length)
Notification of ignorable whitespace (as a String ). |
void |
XMLEventListener.comment(String text)
Notification of a comment. |
void |
XMLEventListener.pi(String target,
String instruction)
Notification of a processing instruction. |
void |
XMLEncoder.text(Writer out,
String text,
boolean escapeAmpersands)
Writes the specified text. |
void |
XMLEncoder.text(Writer out,
char[] ch,
int start,
int length,
boolean escapeAmpersands)
Writes text from the specified character array. |
void |
XMLEncoder.text(Writer out,
char c)
Deprecated. Deprecated since xmlenc 0.51. Use the text method XMLEncoder.text(Writer, char, boolean) instead. |
void |
XMLEncoder.text(Writer out,
char c,
boolean escapeAmpersands)
Writes the specified character. |
void |
XMLEncoder.whitespace(Writer out,
String s)
Writes the specified whitespace string. |
void |
XMLEncoder.whitespace(Writer out,
char[] ch,
int start,
int length)
Writes whitespace from the specified character array. |
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.checkName(String s)
Checks if the specified string matches the Name production. |
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.checkSystemLiteral(String s)
Checks if the specified string matches the SystemLiteral 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.checkPubidLiteral(String s)
Checks if the specified string matches the PubidLiteral production. |
static void |
XMLChecker.checkPubidLiteral(char[] ch,
int start,
int length)
Checks if the specified part of a character array matches the PubidLiteral production. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |