1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.progress;
6
7import org.mockito.ArgumentMatcher;
8import org.mockito.internal.matchers.LocalizedMatcher;
9
10import java.util.List;
11
12@SuppressWarnings("unchecked")
13public interface ArgumentMatcherStorage {
14
15    void reportMatcher(ArgumentMatcher<?> matcher);
16
17    List<LocalizedMatcher> pullLocalizedMatchers();
18
19    void reportAnd();
20
21    void reportNot();
22
23    void reportOr();
24
25    void validateState();
26
27    void reset();
28
29}
30