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

Method read

java/jakarta/el/BeanELResolver.java:231–240  ·  view source on GitHub ↗
(ELContext ctx, Object base)

Source from the content-addressed store, hash-verified

229 }
230
231 private Method read(ELContext ctx, Object base) {
232 if (this.read == null) {
233 this.read = Util.getMethod(this.owner, base, getReadMethod());
234 if (this.read == null) {
235 throw new PropertyNotFoundException(
236 Util.message(ctx, "propertyNotReadable", owner.getName(), getName()));
237 }
238 }
239 return this.read;
240 }
241
242 abstract Method getWriteMethod();
243

Callers

nothing calls this directly

Calls 5

getMethodMethod · 0.95
getReadMethodMethod · 0.95
messageMethod · 0.95
getNameMethod · 0.95
getNameMethod · 0.65

Tested by

no test coverage detected