return addColumn(title, property, clazz.getName(), width, fixedWidth, pattern, style);
}
public FastReportBuilder addColumn(String title, String property, String className, int width, boolean fixedWidth, String pattern, Style style, String fieldDescription) throws ColumnBuilderException, ClassNotFoundException {
AbstractColumn column = ColumnBuilder.getNew()
.setColumnProperty(new ColumnProperty(property, className))
.setWidth(new Integer(width))
.setTitle(title)
.setFixedWidth(Boolean.valueOf(fixedWidth))
.setPattern(pattern)
.setStyle(style)