Package org.jmock.core
Interface InvocationDispatcher
-
- All Superinterfaces:
SelfDescribing,Verifiable
- All Known Implementing Classes:
AbstractInvocationDispatcher,FIFOInvocationDispatcher,LIFOInvocationDispatcher
public interface InvocationDispatcher extends Verifiable, SelfDescribing
- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(Invokable invokable)voidclear()java.lang.Objectdispatch(Invocation invocation)voidsetDefaultStub(Stub newDefaultStub)-
Methods inherited from interface org.jmock.core.SelfDescribing
describeTo
-
Methods inherited from interface org.jmock.core.Verifiable
verify
-
-
-
-
Method Detail
-
dispatch
java.lang.Object dispatch(Invocation invocation) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDefaultStub
void setDefaultStub(Stub newDefaultStub)
-
add
void add(Invokable invokable)
-
clear
void clear()
-
-