#include <librets/RetsXmlTextEvent.h>
Public Types | |
enum | Type { START_ELEMENT, END_ELEMENT, TEXT, END_DOCUMENT } |
Clasify the type of the Xml event. More... | |
Public Member Functions | |
RetsXmlTextEvent (int lineNumber=-1, int columnNumber=-1) | |
Contstruct the object with a default line and column number. | |
virtual | ~RetsXmlTextEvent () |
virtual Type | GetType () const |
Always returns TEXT. | |
void | AppendText (std::string text) |
Append the text. | |
std::string | GetText () const |
Return the current text. | |
virtual std::ostream & | Print (std::ostream &outputStream) const |
Prints the object in a standard form for debugging and error reporting. | |
virtual bool | Equals (const RetsObject *rhs) const |
Checks to see if the text is identical between two RetsXmlTextEvent objects. | |
int | GetLineNumber () const |
Get the line number for this element. | |
int | GetColumnNumber () const |
Get the column number for this element. | |
std::string | ToString () const |
Protected Member Functions | |
std::ostream & | PrintLineAndColumn (std::ostream &out) const |
Protected Attributes | |
int | mLineNumber |
int | mColumnNumber |
enum Type [inherited] |
RetsXmlTextEvent | ( | int | lineNumber = -1 , |
|
int | columnNumber = -1 | |||
) |
Contstruct the object with a default line and column number.
These numbers should reflect the line/column from the XML stream where this element can be found and is used for debugging.
virtual ~RetsXmlTextEvent | ( | ) | [virtual] |
void AppendText | ( | std::string | text | ) |
Append the text.
text | A string containing the text to add. |
virtual bool Equals | ( | const RetsObject * | rhs | ) | const [virtual] |
Checks to see if the text is identical between two RetsXmlTextEvent objects.
Reimplemented from RetsObject.
int GetColumnNumber | ( | ) | const [inherited] |
Get the column number for this element.
int GetLineNumber | ( | ) | const [inherited] |
Get the line number for this element.
std::string GetText | ( | ) | const |
Return the current text.
virtual Type GetType | ( | ) | const [virtual] |
virtual std::ostream& Print | ( | std::ostream & | outputStream | ) | const [virtual] |
Prints the object in a standard form for debugging and error reporting.
Reimplemented from RetsObject.
std::ostream& PrintLineAndColumn | ( | std::ostream & | out | ) | const [protected, inherited] |
std::string ToString | ( | ) | const [inherited] |
int mColumnNumber [protected, inherited] |
int mLineNumber [protected, inherited] |