Searched refs:MethodSerializationWrapper (Results 1 - 4 of 4) sorted by relevance

/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java75 Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, ArgumentsMatcher>) stream
78 for (Map.Entry<MethodSerializationWrapper, ArgumentsMatcher> entry : map
94 Map<MethodSerializationWrapper, ArgumentsMatcher> map = new HashMap<MethodSerializationWrapper, ArgumentsMatcher>(
97 map.put(new MethodSerializationWrapper(matcher.getKey()), matcher
H A DObjectMethodsFilter.java93 toStringMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
94 equalsMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
95 hashCodeMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
105 stream.writeObject(new MethodSerializationWrapper(toStringMethod));
106 stream.writeObject(new MethodSerializationWrapper(equalsMethod));
107 stream.writeObject(new MethodSerializationWrapper(hashCodeMethod));
H A DMethodSerializationWrapper.java23 public class MethodSerializationWrapper implements Serializable { class in inherits:Serializable
47 public MethodSerializationWrapper(Method m) { method in class:MethodSerializationWrapper
H A DInvocation.java206 method = ((MethodSerializationWrapper) stream.readObject()).getMethod();
216 stream.writeObject(new MethodSerializationWrapper(method));

Completed in 69 milliseconds