forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
769 B
39 lines
769 B
6 years ago
|
package com.alibaba.excel.event;
|
||
|
|
||
|
import org.apache.poi.ss.usermodel.Cell;
|
||
|
import org.apache.poi.ss.usermodel.Row;
|
||
|
import org.apache.poi.ss.usermodel.Sheet;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author jipengfei
|
||
|
* @deprecated please use {@ com.alibaba.excel.write.handler.WriteHandler}
|
||
|
*/
|
||
|
@Deprecated
|
||
|
public interface WriteHandler {
|
||
|
|
||
|
/**
|
||
|
* Custom operation after creating each sheet
|
||
|
*
|
||
|
* @param sheetNo
|
||
|
* @param sheet
|
||
|
*/
|
||
|
void sheet(int sheetNo, Sheet sheet);
|
||
|
|
||
|
/**
|
||
|
* Custom operation after creating each row
|
||
|
*
|
||
|
* @param rowNum
|
||
|
* @param row
|
||
|
*/
|
||
|
void row(int rowNum, Row row);
|
||
|
|
||
|
/**
|
||
|
* Custom operation after creating each cell
|
||
|
*
|
||
|
* @param cellNum
|
||
|
* @param cell
|
||
|
*/
|
||
|
void cell(int cellNum, Cell cell);
|
||
|
}
|