public boolean equals()

in elb/src/main/java/org/jclouds/elb/domain/ListenerWithPolicies.java [95:102]


   public boolean equals(Object o) {
      if (this == o)
         return true;
      if (o == null || getClass() != o.getClass())
         return false;
      ListenerWithPolicies that = ListenerWithPolicies.class.cast(o);
      return super.equals(that) && equal(this.policyNames, that.policyNames);
   }