-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcelTextData.java
More file actions
30 lines (27 loc) · 1 KB
/
ExcelTextData.java
File metadata and controls
30 lines (27 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.excel.utils.excel.refactor;
/**
* @Author: Vachel Wang
* @Date: 2017/5/2
* @Time: 下午8:24
* @Version: V1.0
* @Description: 单列内容,内容暂时未做限制,仅支持
*/
public class ExcelTextData extends ExcelData {
/**
* @param exportExcelCustom 处理excel对象
* @param data 数据
* @param colIndex 列坐标
* @param rowIndex 行坐标
* @param colWidth 列宽
* @param rowHeight 行高
* @param sheetIndex sheet下标
* @param excelConfigExt 扩展配置
*/
public ExcelTextData(ExportExcelCustom exportExcelCustom, Object data, Integer colIndex, Integer rowIndex, Integer colWidth, Integer rowHeight, Integer sheetIndex, ExcelConfigExt excelConfigExt) {
super(exportExcelCustom, data, colIndex, rowIndex, colWidth, rowHeight, sheetIndex, excelConfigExt);
}
@Override
public void fillData() {
this.getExportExcelCustom().fillTextData(this);
}
}