(ELContext context, Object base, Object property)
| 71 | } |
| 72 | |
| 73 | @Override |
| 74 | public Object getValue(ELContext context, Object base, Object property) { |
| 75 | Objects.requireNonNull(context); |
| 76 | |
| 77 | if (base instanceof Map<?,?>) { |
| 78 | context.setPropertyResolved(base, property); |
| 79 | return ((Map<?,?>) base).get(property); |
| 80 | } |
| 81 | |
| 82 | return null; |
| 83 | } |
| 84 | |
| 85 | @Override |
| 86 | public void setValue(ELContext context, Object base, Object property, Object value) { |