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.
38 lines
772 B
38 lines
772 B
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 {@link 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); |
|
}
|
|
|