Uses of Interface
org.gjt.xpp.XmlNode

Packages that use XmlNode
org.gjt.xpp This package defines classes compromising public API of XML Pull Parser 2.0 (org.gjt.xpp). 
org.gjt.xpp.impl Constains reference implementation of Xml Pull Parser 2.0 (org.gjt.xpp). 
org.gjt.xpp.impl.format   
org.gjt.xpp.impl.node   
org.gjt.xpp.impl.pullnode   
org.gjt.xpp.impl.pullparser   
org.gjt.xpp.x2impl   
org.gjt.xpp.x2impl.x2pullparser   
 

Uses of XmlNode in org.gjt.xpp
 

Subinterfaces of XmlNode in org.gjt.xpp
 interface XmlPullNode
          This class represents pullable XML subtree - children are built on demand.
 

Methods in org.gjt.xpp that return XmlNode
 XmlNode XmlPullParserFactory.newNode()
          Return new XML node.
 XmlNode XmlPullParserFactory.newNode(XmlPullParser pp)
          Return new XML node that is represeting tree from current pull parser start tag.
 XmlNode XmlPullParserFactory.readNode(java.io.Reader reader, boolean closeAtEnd)
          Read XmlNode from input - essentially it is utility function that will create instance of pull parser, feed input inpt it and return new node tree parsed form the input.
 XmlNode XmlPullParserFactory.readNode(java.io.Reader reader)
          Equivalent to calling readNode(reader, false);
 XmlNode XmlPullNode.newNode()
           
 XmlNode XmlNode.newNode()
          context sensitive factory method to create the same type of node
 XmlNode XmlNode.newNode(java.lang.String amespaceUri, java.lang.String localName)
           
 XmlNode XmlNode.getParentNode()
           
 

Methods in org.gjt.xpp with parameters of type XmlNode
 void XmlRecorder.writeNode(XmlNode node)
           
 void XmlPullParserFactory.writeNode(XmlNode node, java.io.Writer writer, boolean closeAtEnd)
           
 void XmlPullParserFactory.writeNode(XmlNode node, java.io.Writer writer)
          Equivalent to calling writeNode(node, writer, false);
 void XmlPullParser.readNodeWithoutChildren(XmlNode node)
          Read node: it calls readStartTag and then if parser is namespaces aware currently declared nemaspeces will be added and defaultNamespace will be set.
 byte XmlPullParser.readNode(XmlNode node)
          Read subtree into node: call readNodeWithoutChildren and then parse subtree adding children (values obtained with readXontent or readNodeWithoutChildren).
 void XmlNode.setParentNode(XmlNode parent)
           
 

Uses of XmlNode in org.gjt.xpp.impl
 

Methods in org.gjt.xpp.impl that return XmlNode
 XmlNode PullParserFactorySmallImpl.newNode()
           
 XmlNode PullParserFactoryFullImpl.newNode()
           
 

Uses of XmlNode in org.gjt.xpp.impl.format
 

Methods in org.gjt.xpp.impl.format with parameters of type XmlNode
 void Recorder.writeNode(XmlNode node)
           
 

Uses of XmlNode in org.gjt.xpp.impl.node
 

Classes in org.gjt.xpp.impl.node that implement XmlNode
 class Node
          Encapsulate XML Node with list of associated children and namespaces :-).
 

Fields in org.gjt.xpp.impl.node declared as XmlNode
protected  XmlNode Node.parent
           
 

Methods in org.gjt.xpp.impl.node that return XmlNode
 XmlNode Node.newNode()
          context sensitive factory method to create the same type of node
 XmlNode Node.newNode(java.lang.String namespaceUri, java.lang.String localName)
           
 XmlNode Node.getParentNode()
           
 

Methods in org.gjt.xpp.impl.node with parameters of type XmlNode
 void Node.setParentNode(XmlNode parent)
           
 

Uses of XmlNode in org.gjt.xpp.impl.pullnode
 

Classes in org.gjt.xpp.impl.pullnode that implement XmlNode
 class PullNode
          Allows node tree to be constructed on demand.
 

Methods in org.gjt.xpp.impl.pullnode that return XmlNode
 XmlNode PullNode.newNode()
           
 

Uses of XmlNode in org.gjt.xpp.impl.pullparser
 

Methods in org.gjt.xpp.impl.pullparser with parameters of type XmlNode
 void PullParser.readNodeWithoutChildren(XmlNode node)
           
 byte PullParser.readNode(XmlNode node)
           
 

Uses of XmlNode in org.gjt.xpp.x2impl
 

Methods in org.gjt.xpp.x2impl that return XmlNode
 XmlNode X2PullParserFactoryImpl.newNode()
           
 

Uses of XmlNode in org.gjt.xpp.x2impl.x2pullparser
 

Methods in org.gjt.xpp.x2impl.x2pullparser with parameters of type XmlNode
 void X2PullParser.readNodeWithoutChildren(XmlNode node)
           
 byte X2PullParser.readNode(XmlNode node)
           
 



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

Note this package is deprecated by XPP3 that implements XmlPull API