Lines Matching refs:xmlElement
143 bool CElement::fromXml(const CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) in fromXml() argument
145 xmlElement.getAttribute(gDescriptionPropertyName, _strDescription); in fromXml()
148 CXmlElement::CChildIterator childIterator(xmlElement); in fromXml()
188 void CElement::childrenToXml(CXmlElement &xmlElement, in childrenToXml() argument
197 xmlElement.createChild(xmlChildElement, pChild->getXmlElementName()); in childrenToXml()
204 void CElement::toXml(CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) const in toXml() argument
206 setXmlNameAttribute(xmlElement); in toXml()
207 setXmlDescriptionAttribute(xmlElement); in toXml()
208 childrenToXml(xmlElement, serializingContext); in toXml()
211 void CElement::setXmlDescriptionAttribute(CXmlElement &xmlElement) const in setXmlDescriptionAttribute()
215 xmlElement.setAttribute(gDescriptionPropertyName, description); in setXmlDescriptionAttribute()
219 void CElement::setXmlNameAttribute(CXmlElement &xmlElement) const in setXmlNameAttribute()
226 xmlElement.setNameAttribute(strName); in setXmlNameAttribute()