Home | History | Annotate | Download | only in xmlserializer

Lines Matching defs:childElement

138 bool CXmlElement::getChildElement(const string &strType, CXmlElement &childElement) const
142 while (childIterator.next(childElement)) {
144 if (childElement.getType() == strType) {
153 CXmlElement &childElement) const
157 while (childIterator.next(childElement)) {
159 if ((childElement.getType() == strType) &&
160 (childElement.getNameAttribute() == strNameAttribute)) {
170 CXmlElement childElement;
175 while (childIterator.next(childElement)) {
234 void CXmlElement::createChild(CXmlElement &childElement, const string &strType)
239 childElement.setXmlElement(pChildNode);