org.jxls.command.CellDataUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.command;
import org.jxls.common.CellData;
import org.jxls.common.CellRef;
import org.jxls.common.Context;
/**
* Interface for updating {@link CellData}
* See {@link UpdateCellCommand}
*/
public interface CellDataUpdater {
void updateCellData(CellData cellData, CellRef targetCell, Context context);
}