This commit is contained in:
Keith Donald 2009-06-09 20:14:17 +00:00
parent 71cbd982e3
commit 503f69b960
1 changed files with 10 additions and 7 deletions

View File

@ -158,6 +158,8 @@ public class GenericBinder<M> implements Binder<M> {
return results;
}
// internal helpers
class BindingImpl implements Binding {
private Expression property;
@ -335,7 +337,6 @@ public class GenericBinder<M> implements Binder<M> {
}
}
}
private EvaluationContext createEvaluationContext() {
StandardEvaluationContext context = new StandardEvaluationContext();
@ -345,6 +346,8 @@ public class GenericBinder<M> implements Binder<M> {
return context;
}
}
private Class getAnnotationType(AnnotationFormatterFactory factory) {
Class classToIntrospect = factory.getClass();
while (classToIntrospect != null) {