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

Method isReadOnly

java/org/apache/el/parser/AstValue.java:161–170  ·  view source on GitHub ↗
(EvaluationContext ctx)

Source from the content-addressed store, hash-verified

159 }
160
161 @Override
162 public boolean isReadOnly(EvaluationContext ctx) throws ELException {
163 Target t = getTarget(ctx);
164 ctx.setPropertyResolved(false);
165 boolean result = ctx.getELResolver().isReadOnly(ctx, t.base, t.property);
166 if (!ctx.isPropertyResolved()) {
167 throw new PropertyNotFoundException(MessageFactory.get("error.resolver.unhandled", t.base, t.property));
168 }
169 return result;
170 }
171
172 @Override
173 public void setValue(EvaluationContext ctx, Object value) throws ELException {

Callers

nothing calls this directly

Calls 6

getTargetMethod · 0.95
getMethod · 0.95
isReadOnlyMethod · 0.65
setPropertyResolvedMethod · 0.45
getELResolverMethod · 0.45
isPropertyResolvedMethod · 0.45

Tested by

no test coverage detected