@Override
 protected final void startElement(Attributes attrs) {
   children = declareChildren();
   if (children != null) {
     for (ElementHandler child : children.values()) {
       child.setParent(this);
     }
   }
   startSelf(attrs);
 }