Home | History | Annotate | Download | only in matchers
      1 /*
      2  * Copyright (c) 2007 Mockito contributors
      3  * This program is made available under the terms of the MIT License.
      4  */
      5 package org.mockito.internal.matchers;
      6 
      7 import java.io.Serializable;
      8 
      9 import org.hamcrest.Matcher;
     10 
     11 @SuppressWarnings("unchecked")
     12 public interface MatcherDecorator extends Serializable {
     13     Matcher getActualMatcher();
     14 }
     15