Home | History | Annotate | Download | only in converters

Lines Matching refs:converter

12         return converter(annotation).convert(param);
22 private static Converter converter(Annotation annotation) {
23 Converter converter = null;
25 converter = getParam(annotation).converter().newInstance();
27 throw new RuntimeException("Your Converter class must have a public no-arg constructor!", e);
29 converter.initialize(annotation);
30 return converter;