(ELContext context, Object base, Object property)
| 154 | } |
| 155 | |
| 156 | @Override |
| 157 | public boolean isReadOnly(ELContext context, Object base, Object property) { |
| 158 | Objects.requireNonNull(context); |
| 159 | if (base == null || property == null) { |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | context.setPropertyResolved(base, property); |
| 164 | return this.readOnly || this.property(context, base, property).isReadOnly(base); |
| 165 | } |
| 166 | |
| 167 | @Override |
| 168 | public Class<?> getCommonPropertyType(ELContext context, Object base) { |