(ELContext context, Object base, Object property, Object value)
| 69 | |
| 70 | |
| 71 | @Override |
| 72 | public void setValue(ELContext context, Object base, Object property, Object value) { |
| 73 | Objects.requireNonNull(context); |
| 74 | |
| 75 | if (base instanceof ELClass && property instanceof String name) { |
| 76 | Class<?> clazz = ((ELClass) base).getKlass(); |
| 77 | |
| 78 | throw new PropertyNotWritableException( |
| 79 | Util.message(context, "staticFieldELResolver.notWritable", name, clazz.getName())); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | |
| 84 | @Override |