|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ILegacyMatcherMethods | Line # 9 | 0 | 0 | - |
-1.0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| No Tests | |||
| 1 | /* | |
| 2 | * Copyright (c) 2001-2008 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 | public interface ILegacyMatcherMethods { | |
| 10 | ||
| 11 | @SuppressWarnings("deprecation") | |
| 12 | void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher); | |
| 13 | ||
| 14 | @SuppressWarnings("deprecation") | |
| 15 | void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher); | |
| 16 | } | |
|
||||||||||