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 /** 10 * Internal interface that informs Mockito that the matcher is intended to capture varargs. 11 * This information is needed when mockito collects the arguments. 12 */ 13 public interface VarargMatcher extends Serializable { 14 } 15