net.sf.jxls.reader.SectionCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-reader Show documentation
Show all versions of jxls-reader Show documentation
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.reader;
/**
* @author Leonid Vysochyn
*/
public interface SectionCheck {
boolean isCheckSuccessful(XLSRowCursor cursor);
void addRowCheck(OffsetRowCheck offsetRowCheck);
}