MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / getAttributeCount

Method getAttributeCount

src/org/kxml2/kdom/Element.java:79–81  ·  view source on GitHub ↗

Returns the number of attributes of this element.

()

Source from the content-addressed store, hash-verified

77 * Returns the number of attributes of this element. */
78
79 public int getAttributeCount() {
80 return attributes == null ? 0 : attributes.size ();
81 }
82
83 public String getAttributeNamespace (int index) {
84 return ((String []) attributes.elementAt (index)) [0];

Callers 3

getAttributeValueMethod · 0.95
writeMethod · 0.95
parseMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected