(ELContext ctx, Object base)
| 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) { |
nothing calls this directly
no test coverage detected