(ObjectInput in)
| 191 | } |
| 192 | |
| 193 | @Override |
| 194 | public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { |
| 195 | this.expr = in.readUTF(); |
| 196 | String type = in.readUTF(); |
| 197 | if (!type.isEmpty()) { |
| 198 | this.expectedType = ReflectionUtil.forName(type); |
| 199 | } |
| 200 | this.fnMapper = (FunctionMapper) in.readObject(); |
| 201 | this.varMapper = (VariableMapper) in.readObject(); |
| 202 | } |
| 203 | |
| 204 | @Override |
| 205 | public void setValue(ELContext context, Object value) |
nothing calls this directly
no test coverage detected