[svn r274] showplanner template views works
This commit is contained in:
parent
48fbf1d48d
commit
e120304436
7 changed files with 141 additions and 46 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue