com.ontimize.jee.webclient.export.ExcelExportColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontimize-jee-webclient-addons Show documentation
Show all versions of ontimize-jee-webclient-addons Show documentation
Ontimize EE (WebClient Addons module)
The newest version!
package com.ontimize.jee.webclient.export;
import org.apache.poi.ss.usermodel.CellStyle;
public class ExcelExportColumn extends ExportColumn {
public ExcelExportColumn(final String id, final String title, final int width, final CellStyle style) {
super(id, title, width, style);
}
}