1 /* Copyright (c) 2000-2004 jMock.org2 */3 package org.jmock.core;4 5 public interface StubMatchersCollection6 {7 void setName( String name );8 9 void addMatcher( InvocationMatcher matcher );10 11 void setStub( Stub stub );12 }13