mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
10 lines
260 B
Java
10 lines
260 B
Java
import java.util.*;
|
|
|
|
abstract class Test {
|
|
{
|
|
hasEntry(equalTo("parentId"), equalTo(1));
|
|
}
|
|
|
|
public abstract <T> List<T> equalTo(T operand);
|
|
public abstract <K, V> void hasEntry(List<? super K> keyMatcher, List<? super V> valueMatcher);
|
|
} |