(ELContext context, Object base, Object property)
| 115 | } |
| 116 | |
| 117 | @Override |
| 118 | public Object getValue(ELContext context, Object base, Object property) { |
| 119 | context.setPropertyResolved(false); |
| 120 | int sz = resolversSize; |
| 121 | for (int i = 0; i < sz; i++) { |
| 122 | Object result = resolvers[i].getValue(context, base, property); |
| 123 | if (context.isPropertyResolved()) { |
| 124 | return result; |
| 125 | } |
| 126 | } |
| 127 | return null; |
| 128 | } |
| 129 | |
| 130 | @Override |
| 131 | public Object invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params) { |
nothing calls this directly
no test coverage detected