MCPcopy Create free account
hub / github.com/apache/tomcat / getELContext

Method getELContext

java/jakarta/el/ELManager.java:55–61  ·  view source on GitHub ↗

Returns the StandardELContext managed by this ELManager, creating it on first access if it does not already exist. @return the StandardELContext instance

()

Source from the content-addressed store, hash-verified

53 * @return the StandardELContext instance
54 */
55 public StandardELContext getELContext() {
56 if (context == null) {
57 context = new StandardELContext(getExpressionFactory());
58 }
59
60 return context;
61 }
62
63 /**
64 * Replaces the current EL context with a new {@link StandardELContext} initialized from the

Callers 15

doTestParserMethod · 0.95
testAstAndMethod · 0.95
testAstNotEmptyMethod · 0.95
testExpressionsMethod · 0.95
testConvertToTypeMethod · 0.95
addBeanNameResolverMethod · 0.95
addELResolverMethod · 0.95
mapFunctionMethod · 0.95
setVariableMethod · 0.95
importStaticMethod · 0.95
importClassMethod · 0.95
importPackageMethod · 0.95

Calls 1

getExpressionFactoryMethod · 0.95

Tested by 5

doTestParserMethod · 0.76
testAstAndMethod · 0.76
testAstNotEmptyMethod · 0.76
testExpressionsMethod · 0.76
testConvertToTypeMethod · 0.76