library: libXMLParser
#include "TXMLNode.h"

TXMLNode


class description - header file - source file
viewCVS header - viewCVS source

class TXMLNode: public TObject

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TXMLNode(const TXMLNode&)
TXMLNode(_xmlNode* node, TXMLNode* parent = 0, TXMLNode* previous = 0)
virtual~TXMLNode()
voidTObject::AbstractMethod(const char* method) const
virtual voidTObject::AppendPad(Option_t* option = "")
virtual voidTObject::Browse(TBrowser* b)
static TClass*Class()
virtual const char*TObject::ClassName() const
virtual voidTObject::Clear(Option_t* = "")
virtual TObject*TObject::Clone(const char* newname = "") const
virtual Int_tTObject::Compare(const TObject* obj) const
virtual voidTObject::Copy(TObject& object) const
virtual voidTObject::Delete(Option_t* option = "")
virtual Int_tTObject::DistancetoPrimitive(Int_t px, Int_t py)
virtual voidTObject::Draw(Option_t* option = "")
virtual voidTObject::DrawClass() const
virtual TObject*TObject::DrawClone(Option_t* option = "") const
virtual voidTObject::Dump() const
virtual voidTObject::Error(const char* method, const char* msgfmt) const
virtual voidTObject::Execute(const char* method, const char* params, Int_t* error = 0)
virtual voidTObject::Execute(TMethod* method, TObjArray* params, Int_t* error = 0)
virtual voidTObject::ExecuteEvent(Int_t event, Int_t px, Int_t py)
virtual voidTObject::Fatal(const char* method, const char* msgfmt) const
virtual TObject*TObject::FindObject(const char* name) const
virtual TObject*TObject::FindObject(const TObject* obj) const
TList*GetAttributes()
TXMLNode*GetChildren()
const char*GetContent() const
virtual Option_t*TObject::GetDrawOption() const
static Long_tTObject::GetDtorOnly()
virtual const char*TObject::GetIconName() const
virtual const char*TObject::GetName() const
const char*GetNamespaceHref() const
const char*GetNamespacePrefix() const
TXMLNode*GetNextNode()
const char*GetNodeName() const
TXMLNode::EXMLElementTypeGetNodeType() const
virtual char*TObject::GetObjectInfo(Int_t px, Int_t py) const
static Bool_tTObject::GetObjectStat()
virtual Option_t*TObject::GetOption() const
TXMLNode*GetParent() const
TXMLNode*GetPreviousNode() const
const char*GetText() const
virtual const char*TObject::GetTitle() const
virtual UInt_tTObject::GetUniqueID() const
virtual Bool_tTObject::HandleTimer(TTimer* timer)
Bool_tHasAttributes() const
Bool_tHasChildren() const
virtual ULong_tTObject::Hash() const
Bool_tHasNextNode() const
Bool_tHasParent() const
Bool_tHasPreviousNode() const
virtual voidTObject::Info(const char* method, const char* msgfmt) const
virtual Bool_tTObject::InheritsFrom(const char* classname) const
virtual Bool_tTObject::InheritsFrom(const TClass* cl) const
virtual voidTObject::Inspect() const
voidTObject::InvertBit(UInt_t f)
virtual TClass*IsA() const
virtual Bool_tTObject::IsEqual(const TObject* obj) const
virtual Bool_tTObject::IsFolder() const
Bool_tTObject::IsOnHeap() const
virtual Bool_tTObject::IsSortable() const
Bool_tTObject::IsZombie() const
virtual voidTObject::ls(Option_t* option = "") const
voidTObject::MayNotUse(const char* method) const
virtual Bool_tTObject::Notify()
static voidTObject::operator delete(void* ptr)
static voidTObject::operator delete(void* ptr, void* vp)
static voidTObject::operator delete[](void* ptr)
static voidTObject::operator delete[](void* ptr, void* vp)
void*TObject::operator new(size_t sz)
void*TObject::operator new(size_t sz, void* vp)
void*TObject::operator new[](size_t sz)
void*TObject::operator new[](size_t sz, void* vp)
TXMLNode&operator=(const TXMLNode&)
virtual voidTObject::Paint(Option_t* option = "")
virtual voidTObject::Pop()
virtual voidTObject::Print(Option_t* option = "") const
virtual Int_tTObject::Read(const char* name)
virtual voidTObject::RecursiveRemove(TObject* obj)
voidTObject::ResetBit(UInt_t f)
virtual voidTObject::SaveAs(const char* filename = "", Option_t* option = "") const
virtual voidTObject::SavePrimitive(ostream& out, Option_t* option = "")
voidTObject::SetBit(UInt_t f)
voidTObject::SetBit(UInt_t f, Bool_t set)
virtual voidTObject::SetDrawOption(Option_t* option = "")
static voidTObject::SetDtorOnly(void* obj)
static voidTObject::SetObjectStat(Bool_t stat)
virtual voidTObject::SetUniqueID(UInt_t uid)
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)
virtual voidTObject::SysError(const char* method, const char* msgfmt) const
Bool_tTObject::TestBit(UInt_t f) const
Int_tTObject::TestBits(UInt_t f) const
virtual voidTObject::UseCurrentStyle()
virtual voidTObject::Warning(const char* method, const char* msgfmt) const
virtual Int_tTObject::Write(const char* name = "0", Int_t option = 0, Int_t bufsize = 0)
virtual Int_tTObject::Write(const char* name = "0", Int_t option = 0, Int_t bufsize = 0) const
protected:
virtual voidTObject::DoError(int level, const char* location, const char* fmt, va_list va) const
voidTObject::MakeZombie()

Data Members

public:
enum EXMLElementType { kXMLElementNode
kXMLAttributeNode
kXMLTextNode
kXMLCommentNode
};
enum TObject::EStatusBits { kCanDelete
kMustCleanup
kObjInCanvas
kIsReferenced
kHasUUID
kCannotPick
kNoContextMenu
kInvalidObject
};
enum TObject::[unnamed] { kIsOnHeap
kNotDeleted
kZombie
kBitMask
kSingleKey
kOverwrite
kWriteDelete
};
private:
_xmlNode*fXMLNodelibxml node
TXMLNode*fParentParent node
TXMLNode*fChildrenChildren node
TXMLNode*fNextNodeNext sibling node
TXMLNode*fPreviousNodePrevious sibling node
TList*fAttrListList of Attributes

Class Description

                                                                      
 TXMLNode                                                             
                                                                      
 TXMLNode contains a pointer to xmlNode, which is a node under the    
 DOM tree. A node can be an Element, an Attribute, a Text Node        
 or a Comment Node.                                                   
 One can navigate the DOM tree by accessing the siblings and          
 parent or child nodes. Also retriving the Attribute or the Text in   
 an Element node.                                                     
                                                                      

TXMLNode(xmlNode *node, TXMLNode *parent, TXMLNode *previous)
 TXMLNode constructor.
~TXMLNode()
 Destructor. It deletes the node's child, next sibling and the
 attribute list.
const char * GetNodeName()
 Returns the node's name.
TXMLNode * GetChildren()
 Returns the node's child if any, returns 0 if no child.
TXMLNode * GetParent()
 Returns the node's parent if any, returns 0 if no parent.
const char * GetContent()
 Returns the content if any, or 0.
TList * GetAttributes()
 Returns a list of node's attribute if any,
 returns 0 if no attribute.
TXMLNode * GetNextNode()
 Returns the next sibling XMLNode in the DOM tree, if any
 return 0 if no next node.
TXMLNode * GetPreviousNode()
 Returns the previous sibling XMLNode in the DOM tree, if any
 return 0 if no previous node
const char * GetText()
 Returns the content of a Text node if node is a TextNode, 0 otherwise.
Bool_t HasChildren()
 Returns true if node has children.
Bool_t HasNextNode()
 Returns true if has next node.
Bool_t HasParent()
 Returns true if node has parent.
Bool_t HasPreviousNode()
 Returns true if has previous node.
Bool_t HasAttributes()
 Returns true if Element node has attribute.
const char * GetNamespaceHref()
 Returns the URL for the namespace, or 0 if no namespace.
const char * GetNamespacePrefix()
 Returns prefix for the namespace, or 0 if no namespace.
TXMLNode(_xmlNode *node, TXMLNode* parent=0, TXMLNode* previous=0)
EXMLElementType GetNodeType()

Author: Jose Lo 12/4/2005
Last update: root/xmlparser:$Name: $:$Id: TXMLNode.cxx,v 1.3 2006/04/20 14:36:48 rdm Exp $
Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.