MCPcopy Index your code
hub / github.com/apache/tomcat / readExternal

Method readExternal

java/org/apache/el/ValueExpressionImpl.java:193–202  ·  view source on GitHub ↗
(ObjectInput in)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 3

forNameMethod · 0.95
isEmptyMethod · 0.45
readObjectMethod · 0.45

Tested by

no test coverage detected