1 package com.mockobjects.dynamic;2 3 public interface CallFactory {4 Callable createReturnStub( Object result );5 Callable createThrowStub( Throwable throwable );6 Callable createVoidStub();7 Callable createCallExpectation( Callable call );8 Callable createCallSignature( String methodName, ConstraintMatcher constraints, Callable call );9 }10