ICssConvertToHtml.java 418 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 ICssConvertToHtml {
	/**
	 * 把Excel单元格样式转换成HTML样式
	 * @param cell
	 * 
	 */
    public String convertToHtml(Cell cell, CellStyle cellStyle, CellStyleEntity style);

}