public void startElement()

in elb/src/main/java/org/jclouds/elb/xml/LoadBalancerHandler.java [76:96]


   public void startElement(String url, String name, String qName, Attributes attributes) throws SAXException {
      if (equalsOrSuffix(qName, "member")) {
         memberDepth++;
      } else if (equalsOrSuffix(qName, "HealthCheck")) {
         inHealthCheck = true;
      } else if (equalsOrSuffix(qName, "ListenerDescriptions")) {
         inListeners = true;
      } else if (equalsOrSuffix(qName, "AvailabilityZones")) {
         inAvailabilityZones = true;
      } else if (equalsOrSuffix(qName, "SecurityGroups")) {
         inSecurityGroups = true;
      } else if (equalsOrSuffix(qName, "Subnets")) {
         inSubnets = true;
      } else if (equalsOrSuffix(qName, "SourceSecurityGroup")) {
         sourceSecurityGroupBuilder = SecurityGroupAndOwner.builder();
      }
      
      if (inListeners) {
         listenerHandler.startElement(url, name, qName, attributes);
      }
   }