logger.log(TreeLogger.Type.ERROR, "Don't know how to create " + typeName + " it's not assignable to NgValidator");
throw new UnableToCompleteException();
}
// check for NgValidate annotation and collect class literals
NgValidate annotation= ngValidatorType.getAnnotation(NgValidate.class);
List<Class<?>> beanlist;
if(annotation != null) {
beanlist = Arrays.asList(annotation.value());
// for(Class<?> clazz : beanlist) {
// TODO sanity-check if its bean-ish
// }
} else {
logger.log(TreeLogger.Type.ERROR, "Input must be annotated with NgValidate");