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-core Show documentation
Show all versions of jxls-core Show documentation
Small library for Excel generation based on XLS templates
The newest version!
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 UpdateCellCommand
*/
public interface CellDataUpdater {
void updateCellData(CellData cellData, CellRef targetCell, Context context);
}