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 Invokable extends Verifiable {
7 String getDescription();
8
9 boolean matches(Invocation invocation);
10
11 Object invoke(Invocation invocation) throws Throwable;
12 }
This page was automatically generated by Maven