Name

GroveElementAttrList — Representation of the list of XML element attributes.

Synopsis

class GroveElementAttrList {
public:

  // public member functions

  GroveAttr getAttribute(const SString &) const;
  bool removeAttribute(const SString &) ;
  void setAttribute(const GroveAttr &) ;
  GroveAttr firstChild() const;
  GroveAttr lastChild() const;
  GroveAttr getChild(int) const;
  int countChildren() const;
  void appendChild(const GroveAttr &) ;
  void removeAllChildren() ;
};

Description

GroveElementAttrList public member functions

  1. GroveAttr getAttribute(const SString & name) const;


  2. bool removeAttribute(const SString & name) ;

    Remove attribute by it's name.


  3. void setAttribute(const GroveAttr & ) ;

    Set (override) attribute.


  4. GroveAttr firstChild() const;


  5. GroveAttr lastChild() const;


  6. GroveAttr getChild(int n) const;


  7. int countChildren() const;


  8. void appendChild(const GroveAttr & ) ;


  9. void removeAllChildren() ;