All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jxls.transform.jexcel.WritableCellValue Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy