1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
2 package org.jmock.dynamic;
3
4 import org.jmock.expectation.Verifiable;
5
6 public interface InvocationDispatcher extends Verifiable {
7 Object dispatch(Invocation invocation) throws Throwable;
8
9 void add(Invokable invokable);
10
11 void clear();
12 }
This page was automatically generated by Maven