in elb/src/main/java/org/jclouds/elb/xml/DescribeLoadBalancerPolicyTypesResultHandler.java [65:74]
public void startElement(String url, String name, String qName, Attributes attributes) throws SAXException {
if (equalsOrSuffix(qName, "member")) {
memberDepth++;
} else if (equalsOrSuffix(qName, "PolicyTypeDescriptions")) {
inPolicyTypeTypes = true;
}
if (inPolicyTypeTypes) {
policyTypeHandler.startElement(url, name, qName, attributes);
}
}