Returns the value of the attribute with the given name. @param name The name of the attribute @return The attribute value, or null if not found
(String name)
| 252 | * @return The attribute value, or {@code null} if not found |
| 253 | */ |
| 254 | public String getAttributeValue(String name) { |
| 255 | return (attrs == null) ? null : attrs.getValue(name); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Get the attribute that is non request time expression, either from the attribute of the node, or from a |
no test coverage detected