org.jxls.transform.jexcel.WritableCellValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-jexcel Show documentation
Show all versions of jxls-jexcel Show documentation
Jexcel API Transformer implementation for Jxls library
package org.jxls.transform.jexcel;
import org.jxls.common.Context;
import jxl.write.WritableCell;
import jxl.write.WritableSheet;
import jxl.write.WriteException;
/**
* Defines an interface for a cell value which knows how to write itself to a cell
* @author Leonid Vysochyn
* Date: 6/18/12
*/
public interface WritableCellValue {
WritableCell writeToCell(WritableSheet cell, int col, int row, Context context) throws WriteException;
}