1package junitparams.converters;
2
3import java.lang.annotation.*;
4
5/**
6 *
7 * Defines a converter which should be used to convert a parameter to expected
8 * type.
9 *
10 * @deprecated use {@link Param}
11 * @author Pawel Lipinski
12 */
13
14@Retention(RetentionPolicy.RUNTIME)
15@Deprecated
16public @interface ConvertParam {
17
18    Class<? extends ParamConverter<?>> value();
19
20    /**
21     * Options / settings to be used by the converter class
22     */
23    String options() default "";
24
25}
26