public void endElement()

in rds/src/main/java/org/jclouds/rds/xml/DescribeDBSubnetGroupsResultHandler.java [78:89]


   public void endElement(String uri, String name, String qName) throws SAXException {
      if (equalsOrSuffix(qName, "DBSubnetGroups")) {
         inSubnetGroups = false;
      } else if (equalsOrSuffix(qName, "DBSubnetGroup")) {
         subnetGroups.add(subnetGroupHander.getResult());
      } else if (equalsOrSuffix(qName, "Marker")) {
         marker = currentOrNull(currentText);
      } else if (inSubnetGroups) {
         subnetGroupHander.endElement(uri, name, qName);
      }
      currentText.setLength(0);
   }