Returns whether the attribute specified by name has a value. @param attributeName the name of the attribute @return true if an attribute with the given name is specified on this element or has a default value, false otherwise.
(final String attributeName)
| 192 | * default value, false otherwise. |
| 193 | */ |
| 194 | @Override |
| 195 | public boolean hasAttribute(final String attributeName) { |
| 196 | return attributes_.containsKey(attributeName); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * <span style="color:red">INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.</span><br> |
no test coverage detected