Package org.gjt.xpp.impl
Class PullParserFactoryFullImpl
- java.lang.Object
-
- org.gjt.xpp.XmlPullParserFactory
-
- org.gjt.xpp.impl.PullParserFactoryFullImpl
-
public class PullParserFactoryFullImpl extends XmlPullParserFactory
Implementation of Pull Parser Factory.- Author:
- Aleksande Slominski
-
-
Field Summary
-
Fields inherited from class org.gjt.xpp.XmlPullParserFactory
DEFAULT_PROPERTY_NAME
-
-
Constructor Summary
Constructors Constructor Description PullParserFactoryFullImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XmlEndTagnewEndTag()Create new end tag.XmlFormatternewFormatter()Return new XML formatter.XmlNodenewNode()Return new XML node.XmlPullNodenewPullNode(XmlPullParser pp)Return new XML pull node that is represeting tree from current pull parser start tag.XmlPullParsernewPullParser()Create new XML pull parser.XmlRecordernewRecorder()Return new XML recorder.XmlStartTagnewStartTag()Return new XML start tag.-
Methods inherited from class org.gjt.xpp.XmlPullParserFactory
isNamespaceAware, newInstance, newInstance, newInstance, newNode, readNode, readNode, setNamespaceAware, writeNode, writeNode
-
-
-
-
Method Detail
-
newPullParser
public XmlPullParser newPullParser() throws XmlPullParserException
Description copied from class:XmlPullParserFactoryCreate new XML pull parser.- Overrides:
newPullParserin classXmlPullParserFactory- Throws:
XmlPullParserException
-
newEndTag
public XmlEndTag newEndTag()
Description copied from class:XmlPullParserFactoryCreate new end tag.- Overrides:
newEndTagin classXmlPullParserFactory
-
newNode
public XmlNode newNode()
Description copied from class:XmlPullParserFactoryReturn new XML node.- Overrides:
newNodein classXmlPullParserFactory
-
newPullNode
public XmlPullNode newPullNode(XmlPullParser pp) throws XmlPullParserException
Description copied from class:XmlPullParserFactoryReturn new XML pull node that is represeting tree from current pull parser start tag.- Overrides:
newPullNodein classXmlPullParserFactory- Throws:
XmlPullParserException
-
newStartTag
public XmlStartTag newStartTag()
Description copied from class:XmlPullParserFactoryReturn new XML start tag.- Overrides:
newStartTagin classXmlPullParserFactory
-
newFormatter
public XmlFormatter newFormatter() throws XmlPullParserException
Description copied from class:XmlPullParserFactoryReturn new XML formatter.- Overrides:
newFormatterin classXmlPullParserFactory- Throws:
XmlPullParserException
-
newRecorder
public XmlRecorder newRecorder()
Description copied from class:XmlPullParserFactoryReturn new XML recorder.- Overrides:
newRecorderin classXmlPullParserFactory
-
-