poi/src/examples/src/org/apache/poi/ss/examples/html/HtmlHelper.java

23 lines
711 B
Java

package org.apache.poi.ss.examples.html;
import org.apache.poi.ss.usermodel.CellStyle;
import java.util.Formatter;
/**
* This interface is used where code wants to be independent of the workbook
* formats. If you are writing such code, you can add a method to this
* interface, and then implement it for both HSSF and XSSF workbooks, letting
* the driving code stay independent of format.
*
* @author Ken Arnold, Industrious Media LLC
*/
public interface HtmlHelper {
/**
* Outputs the appropriate CSS style for the given cell style.
*
* @param style The cell style.
* @param out The place to write the output.
*/
void colorStyles(CellStyle style, Formatter out);
}