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

Method getValueReference

java/jakarta/el/ValueExpression.java:117–122  ·  view source on GitHub ↗

Returns a reference to the resolved property for this expression. This default implementation always returns null. Subclasses should override this method to provide the resolved base object and property. @param context The EL context for this evaluation @return This default implementat

(ELContext context)

Source from the content-addressed store, hash-verified

115 * @since EL 2.2
116 */
117 public ValueReference getValueReference(ELContext context) {
118 // Expected to be over-ridden by implementation
119 context.notifyBeforeEvaluation(getExpressionString());
120 context.notifyAfterEvaluation(getExpressionString());
121 return null;
122 }
123}

Callers 5

testGetValueReferenceMethod · 0.95
testBug49345Method · 0.95
testBug69948Method · 0.95
getValueReferenceMethod · 0.95

Calls 3

getExpressionStringMethod · 0.45
notifyAfterEvaluationMethod · 0.45

Tested by 4

testGetValueReferenceMethod · 0.76
testBug49345Method · 0.76
testBug69948Method · 0.76