Uses of Class
org.xmlpull.v1.XmlPullParserException

Packages that use XmlPullParserException
org.xmlpull.mxp1 Contains MXP1 parser minimal implementation that should work on J2ME and implementation of  XMLPULL V1 API
org.xmlpull.v1   
 

Uses of XmlPullParserException in org.xmlpull.mxp1
 

Methods in org.xmlpull.mxp1 that throw XmlPullParserException
 void MXParser.setFeature(java.lang.String name, boolean state)
          Method setFeature
 void MXParser.setProperty(java.lang.String name, java.lang.Object value)
           
 void MXParser.setInput(java.io.Reader in)
           
 void MXParser.setInput(java.io.InputStream inputStream, java.lang.String inputEncoding)
           
 void MXParser.defineEntityReplacementText(java.lang.String entityName, java.lang.String replacementText)
           
 int MXParser.getNamespaceCount(int depth)
           
 java.lang.String MXParser.getNamespacePrefix(int pos)
           
 java.lang.String MXParser.getNamespaceUri(int pos)
           
 boolean MXParser.isWhitespace()
           
 boolean MXParser.isEmptyElementTag()
           
 int MXParser.getEventType()
           
 void MXParser.require(int type, java.lang.String namespace, java.lang.String name)
           
 void MXParser.skipSubTree()
          Skip sub tree that is currently porser positioned on.
 java.lang.String MXParser.nextText()
           
 int MXParser.nextTag()
           
 int MXParser.next()
           
 int MXParser.nextToken()
           
protected  int MXParser.nextImpl()
           
protected  int MXParser.parseProlog()
           
protected  int MXParser.parseEpilog()
           
 int MXParser.parseEndTag()
           
 int MXParser.parseStartTag()
           
protected  char MXParser.parseAttribute()
           
protected  char[] MXParser.parseEntityRef()
           
protected  char[] MXParser.lookuEntityReplacement(int entitNameLen)
           
protected  void MXParser.parseComment()
           
protected  boolean MXParser.parsePI()
           
protected  void MXParser.parseXmlDecl(char ch)
           
protected  void MXParser.parseXmlDeclWithVersion(int versionStart, int versionEnd)
           
protected  void MXParser.parseDocdecl()
           
protected  void MXParser.parseCDSect(boolean hadCharData)
           
protected  void MXParser.fillBuf()
           
protected  char MXParser.more()
           
protected  char MXParser.requireInput(char ch, char[] input)
           
protected  char MXParser.requireNextS()
           
protected  char MXParser.skipS(char ch)
           
 void MXParserCachingStrings.setFeature(java.lang.String name, boolean state)
          This allows to change name iterning property in this enhanced impl.
 XmlPullParser MXParserFactory.newPullParser()
           
 XmlSerializer MXParserFactory.newSerializer()
           
 void MXParserNonValidating.setFeature(java.lang.String name, boolean state)
          This allows to change processing DOCDECL (controls if parser is non-validating).
protected  char MXParserNonValidating.more()
           
protected  char[] MXParserNonValidating.lookuEntityReplacement(int entitNameLen)
           
protected  void MXParserNonValidating.parseDocdecl()
           
protected  char MXParserNonValidating.processExternalId(char ch)
           
protected  void MXParserNonValidating.processInternalSubset()
           
protected  void MXParserNonValidating.processPEReference()
           
protected  void MXParserNonValidating.processMarkupDecl(char ch)
           
protected  void MXParserNonValidating.processElementDecl(char ch)
           
protected  void MXParserNonValidating.processAttlistDecl(char ch)
           
protected  void MXParserNonValidating.processEntityDecl(char ch)
           
protected  void MXParserNonValidating.processNotationDecl(char ch)
           
protected  char MXParserNonValidating.readName(char ch)
           
 

Uses of XmlPullParserException in org.xmlpull.v1
 

Methods in org.xmlpull.v1 that throw XmlPullParserException
 void XmlPullParserFactory.setFeature(java.lang.String name, boolean state)
          Set the features to be set when XML Pull Parser is created by this factory.
 XmlPullParser XmlPullParserFactory.newPullParser()
          Creates a new instance of a XML Pull Parser using the currently configured factory features.
 XmlSerializer XmlPullParserFactory.newSerializer()
          Creates a new instance of a XML Serializer.
static XmlPullParserFactory XmlPullParserFactory.newInstance()
          Create a new instance of a PullParserFactory that can be used to create XML pull parsers (see class description for more details).
static XmlPullParserFactory XmlPullParserFactory.newInstance(java.lang.String classNames, java.lang.Class context)
           
 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 XmlPullParser.setProperty(java.lang.String name, java.lang.Object value)
          Set the value of a property.
 void XmlPullParser.setInput(java.io.Reader in)
          Set the input source for parser to the given reader and resets the parser.
 void XmlPullParser.setInput(java.io.InputStream inputStream, java.lang.String inputEncoding)
          Sets the input stream the parser is going to process.
 void XmlPullParser.defineEntityReplacementText(java.lang.String entityName, java.lang.String replacementText)
          Set new value for entity replacement text as defined in XML 1.0 Section 4.5 Construction of Internal Entity Replacement Text.
 int XmlPullParser.getNamespaceCount(int depth)
          Returns the numbers of elements in the namespace stack for the given depth.
 java.lang.String XmlPullParser.getNamespacePrefix(int pos)
          Returns the namespace prefixe for the given position in the namespace stack.
 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 XmlPullParser.isWhitespace()
          Checks whether the current TEXT event contains only whitespace characters.
 boolean XmlPullParser.isEmptyElementTag()
          Returns true if the current event is START_TAG and the tag is degenerated (e.g.
 int XmlPullParser.getEventType()
          Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
 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).
 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.
 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.
 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 XmlPullParser.nextTag()
          Call next() and return event if it is START_TAG or END_TAG otherwise throw an exception.
 



Copyright (c) 2004 IU Extreme! Lab http://www.extreme.indiana.edu/ All Rights Reserved.