Lines Matching refs:xmlElement
144 bool CElement::fromXml(const CXmlElement &xmlElement, in fromXml() argument
146 xmlElement.getAttribute(gDescriptionPropertyName, _strDescription); in fromXml()
149 CXmlElement::CChildIterator childIterator(xmlElement); in fromXml()
192 void CElement::childrenToXml(CXmlElement &xmlElement, in childrenToXml() argument
201 xmlElement.createChild(xmlChildElement, pChild->getXmlElementName()); in childrenToXml()
208 void CElement::toXml(CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) const in toXml() argument
210 setXmlNameAttribute(xmlElement); in toXml()
211 setXmlDescriptionAttribute(xmlElement); in toXml()
212 childrenToXml(xmlElement, serializingContext); in toXml()
215 void CElement::setXmlDescriptionAttribute(CXmlElement &xmlElement) const in setXmlDescriptionAttribute()
219 xmlElement.setAttribute(gDescriptionPropertyName, description); in setXmlDescriptionAttribute()
223 void CElement::setXmlNameAttribute(CXmlElement &xmlElement) const in setXmlNameAttribute()
230 xmlElement.setNameAttribute(strName); in setXmlNameAttribute()