Example usage for org.apache.poi.hssf.record CellRecord getRow

List of usage examples for org.apache.poi.hssf.record CellRecord getRow

Introduction

In this page you can find the example usage for org.apache.poi.hssf.record CellRecord getRow.

Prototype

@Override
    public final int getRow() 

Source Link

Usage

From source file:org.jreserve.gui.poi.read.xls.XlsTableReader.java

License:Open Source License

private void cellRecord(CellRecord cr) throws Exception {
    cellRecord(cr.getRow(), cr.getColumn(), cr);
}

From source file:org.jreserve.gui.poi.read.xls.XlsTableReader.java

License:Open Source License

protected final String getCellReference(CellRecord record) {
    return getCellReference(record.getRow(), record.getColumn());
}