net.sf.jxls.controller.WorkbookCellFinder 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
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.controller;
import java.util.List;
/**
* Defines interface to find transformed cells in a workbook
* @author Leonid Vysochyn
*/
public interface WorkbookCellFinder {
List findCell(String sheetName, int rowNum, int colNum);
List findCell(String sheetName, String cellName);
}