MCPcopy Index your code
hub / github.com/apache/tomcat / getAttributeValue

Method getAttributeValue

java/org/apache/jasper/compiler/Node.java:254–256  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 9

getTextAttributeMethod · 0.95
checkAttributesMethod · 0.95
checkConflictMethod · 0.45
visitMethod · 0.45
NamedAttributeMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
generateAliasMapMethod · 0.45

Calls 1

getValueMethod · 0.65

Tested by

no test coverage detected