Java程序  |  17行  |  429 B

package junitparams.converters;

/**
 * 
 * Implement this interface if you want to convert params from some
 * representation to the type expected by your test method's parameter.
 * 
 * <T> is the expected parameter type.
 *
 * @deprecated use {@link Converter}
 * @author Pawel Lipinski
 */
@Deprecated
public interface ParamConverter<T> {
    T convert(Object param, String options) throws ConversionFailedException;
}