#include <Message.h>
Collaboration diagram for Message:
Definition at line 12 of file Message.h.
Public Methods | |
Message (string value) | |
Constructor which sets the value. | |
Message () | |
Empty Constructor. | |
TreeNode * | getTree () |
Parses the XML and returns the tree if necessary. | |
string * | getXML () |
gets the XML from the Message | |
~Message () | |
Destructor. | |
Public Attributes | |
TreeNode * | node |
The root TreeNode. | |
string | xml |
The XML string. | |
Private Methods | |
void | parseXML () |
Parses the XML. |
|
Constructor which sets the value.
|
|
Empty Constructor.
|
|
Destructor.
Definition at line 10 of file Message.C. References node. |
|
Parses the XML and returns the tree if necessary.
Definition at line 18 of file Message.C. References node, and parseXML(). Referenced by MessageExecutor::executeMessage(). |
|
gets the XML from the Message
Definition at line 15 of file Message.C. References xml. Referenced by Connector::process(). |
|
Parses the XML.
Definition at line 25 of file Message.C. References node, QuickDirtyXMLParser::parseString(), and xml. Referenced by getTree(). |
|
The root TreeNode.
Definition at line 17 of file Message.h. Referenced by getTree(), Message(), parseXML(), and ~Message(). |
|
The XML string.
Definition at line 21 of file Message.h. Referenced by getXML(), Message(), and parseXML(). |