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.
25 lines
499 B
25 lines
499 B
package com.alibaba.excel.write.handler; |
|
|
|
import org.apache.poi.ss.usermodel.Workbook; |
|
|
|
/** |
|
* intercepts handle Wookbook creation |
|
* |
|
* @author zhuangjiaju |
|
*/ |
|
public interface WookbookExcelWriteHandler extends ExcelWriteHandler { |
|
|
|
/** |
|
* called before create the sheet |
|
* |
|
* @param writeContext |
|
*/ |
|
void beforeWookbookCreate(); |
|
|
|
/** |
|
* called after the sheet is created |
|
* |
|
* @param writeContext |
|
*/ |
|
void afterWookbookCreate(Workbook workbook); |
|
}
|
|
|