Public Member Functions | Public Attributes | Protected Attributes

ACEXML_Element_Tree_Node Class Reference

An abstract base class for describing DTD child element definition. More...

#include <parser/debug_validator/Element_Tree.h>

Inheritance diagram for ACEXML_Element_Tree_Node:
Inheritance graph
[legend]
Collaboration diagram for ACEXML_Element_Tree_Node:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 ACEXML_Element_Tree_Node ()
 Default constructor.
virtual ~ACEXML_Element_Tree_Node ()
 Destructor.
ACEXML_Element_Tree_Nodenext ()
 Accessor for next element in chain.
void next (ACEXML_Element_Tree_Node *n)
virtual void dump ()=0
 Displaying the content.

Public Attributes

 ACE_ALLOC_HOOK_DECLARE

Protected Attributes

ACEXML_Element_Tree_Nodenext_

Detailed Description

An abstract base class for describing DTD child element definition.

See also:
ACEXML_Element_Tree_Name_Node, ACEXML_Element_Tree_List_Node

Definition at line 31 of file Element_Tree.h.


Constructor & Destructor Documentation

ACEXML_INLINE ACEXML_Element_Tree_Node::ACEXML_Element_Tree_Node (  ) 

Default constructor.

Definition at line 4 of file Element_Tree.inl.

  : next_ (0)
{
}

ACEXML_Element_Tree_Node::~ACEXML_Element_Tree_Node (  )  [virtual]

Destructor.

Definition at line 9 of file Element_Tree.cpp.

{
  delete this->next_;
}


Member Function Documentation

virtual void ACEXML_Element_Tree_Node::dump (  )  [pure virtual]

Displaying the content.

Implemented in ACEXML_Element_Tree_Name_Node, and ACEXML_Element_Tree_List_Node.

ACEXML_INLINE ACEXML_Element_Tree_Node * ACEXML_Element_Tree_Node::next ( void   ) 

Accessor for next element in chain.

Definition at line 10 of file Element_Tree.inl.

{
  return this->next_;
}

ACEXML_INLINE void ACEXML_Element_Tree_Node::next ( ACEXML_Element_Tree_Node n  ) 

Definition at line 16 of file Element_Tree.inl.

{
  this->next_ = n;
}


Member Data Documentation

Reimplemented in ACEXML_Element_Tree_Name_Node, and ACEXML_Element_Tree_List_Node.

Definition at line 48 of file Element_Tree.h.

Definition at line 51 of file Element_Tree.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines