1 /* Copyright (c) 2000-2004 jMock.org2 */3 package org.jmock.core;4 5 6 public interface DynamicMock7 extends Verifiable8 {9 Class getMockedType();10 11 Object proxy();12 13 void setDefaultStub( Stub newDefaultStub );14 15 void addInvokable( Invokable invokable );16 17 void reset();18 }19 20