(EvaluationContext ctx)
| 50 | } |
| 51 | |
| 52 | @Override |
| 53 | public Class<?> getType(EvaluationContext ctx) throws ELException { |
| 54 | Target t = getTarget(ctx); |
| 55 | ctx.setPropertyResolved(false); |
| 56 | Class<?> result = ctx.getELResolver().getType(ctx, t.base, t.property); |
| 57 | if (!ctx.isPropertyResolved()) { |
| 58 | throw new PropertyNotFoundException(MessageFactory.get("error.resolver.unhandled", t.base, t.property)); |
| 59 | } |
| 60 | return result; |
| 61 | } |
| 62 | |
| 63 | private Target getTarget(EvaluationContext ctx) throws ELException { |
| 64 | // evaluate expr-a to value-a |
nothing calls this directly
no test coverage detected