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