|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ILegacyMatcherMethods.java | - | - | - | - |
|
1 | /* | |
2 | * Copyright (c) 2001-2006 OFFIS, Tammo Freese. | |
3 | * This program is made available under the terms of the MIT License. | |
4 | */ | |
5 | package org.easymock.internal; | |
6 | ||
7 | import java.lang.reflect.Method; | |
8 | ||
9 | import org.easymock.ArgumentsMatcher; | |
10 | ||
11 | public interface ILegacyMatcherMethods { | |
12 | ||
13 | void setDefaultMatcher(ArgumentsMatcher matcher); | |
14 | ||
15 | void setMatcher(Method method, ArgumentsMatcher matcher); | |
16 | } |
|