1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.handler.codec.xml;
17
18 import java.util.LinkedList;
19 import java.util.List;
20
21
22
23
24 public class XmlElementStart extends XmlElement {
25
26 private final List<XmlAttribute> attributes = new LinkedList<XmlAttribute>();
27
28 public XmlElementStart(String name, String namespace, String prefix) {
29 super(name, namespace, prefix);
30 }
31
32 public List<XmlAttribute> attributes() {
33 return attributes;
34 }
35
36 @Override
37 public boolean equals(Object o) {
38 if (this == o) { return true; }
39 if (o == null || getClass() != o.getClass()) { return false; }
40 if (!super.equals(o)) { return false; }
41
42 XmlElementStart that = (XmlElementStart) o;
43
44 if (attributes != null ? !attributes.equals(that.attributes) : that.attributes != null) { return false; }
45
46 return true;
47 }
48
49 @Override
50 public int hashCode() {
51 int result = super.hashCode();
52 result = 31 * result + (attributes != null ? attributes.hashCode() : 0);
53 return result;
54 }
55
56 @Override
57 public String toString() {
58 return "XmlElementStart{" +
59 "attributes=" + attributes +
60 super.toString() +
61 "} ";
62 }
63
64 }