Main Page | Packages | Class Hierarchy | Class List | File List | Class Members

treebuilder.TagNode Class Reference

Inheritance diagram for treebuilder.TagNode:

Inheritance graph
[legend]
Collaboration diagram for treebuilder.TagNode:

Collaboration graph
[legend]
List of all members.

Detailed Description

TagNode.

An XML tag node. This class is derived from a NamedEntity, which is an XML object with a name (this include a tag and an attribute). It extends this object with an attribute list (something a tag node can have but and attribute node cannot).


Public Member Functions

 TagNode ()
 TagNode (String tagName)
 TagNode (String tagName, String prefix, String namespace)
AttributeList getAttrList ()
void setAttrList (AttributeList attrList)

Private Attributes

AttributeList mAttrList = null
 attribute list (or null, if there is no attribute list)


Constructor & Destructor Documentation

treebuilder.TagNode.TagNode  ) 
 

00030 { 00031 super( TreeNodeType.TAG ); 00032 }

treebuilder.TagNode.TagNode String  tagName  ) 
 

00035 { 00036 super( TreeNodeType.TAG, tagName ); 00037 }

treebuilder.TagNode.TagNode String  tagName,
String  prefix,
String  namespace
 

00040 { 00041 super( TreeNodeType.TAG, tagName, prefix, namespace ); 00042 }


Member Function Documentation

AttributeList treebuilder.TagNode.getAttrList  ) 
 

00044 { return mAttrList; }

void treebuilder.TagNode.setAttrList AttributeList  attrList  ) 
 

00045 { mAttrList = attrList; }


Member Data Documentation

AttributeList treebuilder.TagNode.mAttrList = null [private]
 

attribute list (or null, if there is no attribute list)


The documentation for this class was generated from the following file:
Generated on Tue Sep 21 22:08:43 2004 for Building an in-memory tree using the XmlPullParser by doxygen 1.3.8