ICssConvertToExcel.java
435 Bytes
package com.bckefu.excel.html.css;
import com.bckefu.excel.html.entity.style.CellStyleEntity;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
/**
*
*/
public interface ICssConvertToExcel {
/**
* 把HTML样式转换成Cell样式
* @param cell
* @param style
*/
public void convertToExcel(Cell cell, CellStyle cellStyle, CellStyleEntity style);
}