Returns the number of attributes of this element.
()
| 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]; |
no test coverage detected