Abstract XMLHandler based class.
More...
Inherits CEGUI::XMLHandler.
Inherited by CEGUI::Animation_xmlHandler, CEGUI::AnimationAffectorHandler, CEGUI::AnimationDefinitionHandler, CEGUI::AnimationKeyFrameHandler, CEGUI::AnimationSubscriptionHandler, and CEGUI::Falagard_xmlHandler.
List of all members.
Public Member Functions |
void | elementStart (const String &element, const XMLAttributes &attributes) |
| Method called to notify the handler at the start of each XML element encountered.
|
void | elementEnd (const String &element) |
| Method called to notify the handler at the end of each XML element encountered.
|
bool | completed () const |
| returns whether this chained handler has completed.
|
Public Member Functions inherited from CEGUI::XMLHandler |
| XMLHandler (void) |
| XMLHandler base class constructor.
|
virtual | ~XMLHandler (void) |
| XMLHandler base class destructor.
|
virtual void | text (const String &text) |
| Method called to notify text node, several successiv text node are agregated.
|
Detailed Description
Abstract XMLHandler based class.
Member Function Documentation
void CEGUI::ChainedXMLHandler::elementEnd |
( |
const String & |
element | ) |
|
|
virtual |
Method called to notify the handler at the end of each XML element encountered.
- Parameters:
-
element | String object holding the name of the element that is ending. |
- Returns:
- Nothing.
Reimplemented from CEGUI::XMLHandler.
void CEGUI::ChainedXMLHandler::elementStart |
( |
const String & |
element, |
|
|
const XMLAttributes & |
attributes |
|
) |
| |
|
virtual |
Method called to notify the handler at the start of each XML element encountered.
- Parameters:
-
element | String object holding the name of the element that is starting. |
attributes | An XMLAttributes object holding the collection of attributes specified for the element. |
- Returns:
- Nothing.
Reimplemented from CEGUI::XMLHandler.