void |
MXParser.defineEntityReplacementText(java.lang.String entityName,
java.lang.String replacementText) |
|
void |
XmlPullParser.defineEntityReplacementText(java.lang.String entityName,
java.lang.String replacementText) |
|
protected void |
MXParser.fillBuf() |
|
int |
MXParser.getNamespaceCount(int depth) |
|
int |
XmlPullParser.getNamespaceCount(int depth) |
Returns the numbers of elements in the namespace stack for the given
depth.
|
java.lang.String |
MXParser.getNamespacePrefix(int pos) |
|
java.lang.String |
XmlPullParser.getNamespacePrefix(int pos) |
Returns the namespace prefixe for the given position
in the namespace stack.
|
java.lang.String |
MXParser.getNamespaceUri(int pos) |
|
java.lang.String |
XmlPullParser.getNamespaceUri(int pos) |
Returns the namespace URI for the given position in the
namespace stack
If the position is out of range, an exception is thrown.
|
boolean |
MXParser.isEmptyElementTag() |
|
boolean |
XmlPullParser.isEmptyElementTag() |
Returns true if the current event is START_TAG and the tag
is degenerated
(e.g.
|
boolean |
MXParser.isWhitespace() |
|
boolean |
XmlPullParser.isWhitespace() |
Checks whether the current TEXT event contains only whitespace
characters.
|
protected char[] |
MXParser.lookuEntityReplacement(int entitNameLen) |
|
protected char |
MXParser.more() |
|
int |
MXParser.next() |
|
int |
XmlPullParser.next() |
Get next parsing event - element content wil be coalesced and only one
TEXT event must be returned for whole element content
(comments and processing instructions will be ignored and emtity references
must be expanded or exception mus be thrown if entity reerence can not be exapnded).
|
protected int |
MXParser.nextImpl() |
|
int |
MXParser.nextTag() |
|
int |
XmlPullParser.nextTag() |
Call next() and return event if it is START_TAG or END_TAG
otherwise throw an exception.
|
java.lang.String |
MXParser.nextText() |
|
java.lang.String |
XmlPullParser.nextText() |
If current event is START_TAG then if next element is TEXT then element content is returned
or if next event is END_TAG then empty string is returned, otherwise exception is thrown.
|
int |
MXParser.nextToken() |
|
int |
XmlPullParser.nextToken() |
This method works similarly to next() but will expose
additional event types (COMMENT, CDSECT, DOCDECL, ENTITY_REF, PROCESSING_INSTRUCTION, or
IGNORABLE_WHITESPACE) if they are available in input.
|
protected char |
MXParser.parseAttribute() |
|
protected void |
MXParser.parseCDSect(boolean hadCharData) |
|
protected void |
MXParser.parseComment() |
|
protected void |
MXParser.parseDocdecl() |
|
int |
MXParser.parseEndTag() |
|
protected char[] |
MXParser.parseEntityRef() |
|
protected int |
MXParser.parseEpilog() |
|
static FactoryPermissionCollection |
PermissionsXmlParser.parsePermissionsXml(java.io.InputStream inputStream,
ModuleLoader moduleLoader,
java.lang.String moduleName) |
Parse the permissions.xml stream content.
|
static FactoryPermissionCollection |
PermissionsXmlParser.parsePermissionsXml(XmlPullParser reader,
ModuleLoader moduleLoader,
java.lang.String moduleName) |
Parse the permissions.xml content.
|
protected boolean |
MXParser.parsePI() |
|
protected int |
MXParser.parseProlog() |
|
int |
MXParser.parseStartTag() |
|
protected void |
MXParser.parseXmlDecl(char ch) |
|
protected void |
MXParser.parseXmlDeclWithVersion(int versionStart,
int versionEnd) |
|
void |
MXParser.require(int type,
java.lang.String namespace,
java.lang.String name) |
|
void |
XmlPullParser.require(int type,
java.lang.String namespace,
java.lang.String name) |
Test if the current event is of the given type and if the
namespace and name do match. null will match any namespace
and any name.
|
protected char |
MXParser.requireInput(char ch,
char[] input) |
|
protected char |
MXParser.requireNextS() |
|
void |
MXParser.setFeature(java.lang.String name,
boolean state) |
Method setFeature
|
void |
XmlPullParser.setFeature(java.lang.String name,
boolean state) |
Use this call to change the general behaviour of the parser,
such as namespace processing or doctype declaration handling.
|
void |
MXParser.setInput(java.io.InputStream inputStream,
java.lang.String inputEncoding) |
|
void |
MXParser.setInput(java.io.Reader in) |
|
void |
XmlPullParser.setInput(java.io.InputStream inputStream,
java.lang.String inputEncoding) |
Sets the input stream the parser is going to process.
|
void |
XmlPullParser.setInput(java.io.Reader in) |
Set the input source for parser to the given reader and
resets the parser.
|
void |
MXParser.setProperty(java.lang.String name,
java.lang.Object value) |
|
void |
XmlPullParser.setProperty(java.lang.String name,
java.lang.Object value) |
Set the value of a property.
|
protected char |
MXParser.skipS(char ch) |
|
void |
MXParser.skipSubTree() |
Skip sub tree that is currently parser positioned on.
|