2
Fork 0

[svn r274] showplanner template views works

This commit is contained in:
willemc 2007-08-20 00:31:21 +02:00
parent 48fbf1d48d
commit e120304436
7 changed files with 141 additions and 46 deletions

View file

@ -184,7 +184,13 @@ public class VascAnnotationParser {
// recursif function:
return getValue(typeClass,annotationType,propRest);
}
result = doAnnotation(method.getAnnotation(annotationType));
Annotation anno = method.getAnnotation(annotationType);
// no annotation == no default
if (anno==null && annotationType.equals(VascDefaultValue.class)) {
return null;
}
result = doAnnotation(anno);
if(result!=null) {
return result;
}