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

Method write

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

Source from the content-addressed store, hash-verified

218 }
219
220 private Method write(ELContext ctx, Object base) {
221 if (this.write == null) {
222 this.write = Util.getMethod(this.owner, base, getWriteMethod());
223 if (this.write == null) {
224 throw new PropertyNotWritableException(
225 Util.message(ctx, "propertyNotWritable", owner.getName(), getName()));
226 }
227 }
228 return this.write;
229 }
230
231 private Method read(ELContext ctx, Object base) {
232 if (this.read == null) {

Callers

nothing calls this directly

Calls 5

getMethodMethod · 0.95
getWriteMethodMethod · 0.95
messageMethod · 0.95
getNameMethod · 0.95
getNameMethod · 0.65

Tested by

no test coverage detected