org.jxls.reader.BaseBlockReader 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 Reader module to read Excel files
package org.jxls.reader;
/**
* @author Leonid Vysochyn
*/
public abstract class BaseBlockReader implements XLSBlockReader {
int startRow;
int endRow;
XLSReadStatus readStatus = new XLSReadStatus();
public int getStartRow() {
return startRow;
}
public void setStartRow(int startRow) {
this.startRow = startRow;
}
public int getEndRow() {
return endRow;
}
public void setEndRow(int endRow) {
this.endRow = endRow;
}
public XLSReadStatus getReadStatus() {
return readStatus;
}
public void setReadStatus(XLSReadStatus readStatus) {
this.readStatus = readStatus;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy