blob: aa01160709c1fcac3b2d8b045508d05c5214b310 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.matchers;
import java.io.Serializable;
import org.hamcrest.Matcher;
@SuppressWarnings("unchecked")
public interface MatcherDecorator extends Serializable {
Matcher getActualMatcher();
}