colClass = null;
String cls = null;
try {
cls = getStringAttribute(element, ATTR_CLASS);
if (cls.length() == 0) {
throw new ReportException("Не указан класс результирующей колонки");
}
colClass = getClass().getClassLoader().loadClass(cls);
} catch (ClassNotFoundException ex) {
throw new ReportException("Класс результирующей колонки имеет неизвестный тип:" + cls);
}
properties = new ResultColumn(element, context, colClass);
String viewFuncVal = getStringAttribute(element, ATTR_VIEWFUNCTION, null, false);