Class classByTag = CertTagFactory.getClassByTag(tagList.get(row));
try {
Method method = classByTag.getMethod("getValue");
return method.getReturnType().getSimpleName();
} catch (NoSuchMethodException ex) {
return new ErrorValue(new ClipsException("Ошибка в теге", ex));
} catch (SecurityException ex) {
return new ErrorValue(new ClipsException("Ошибка в теге", ex));
}
}
case COL_DESC:
return CertTagFactory.getClassByTag(tagList.get(row)).getAnnotation(TagToClass.class).title();
default: