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

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

Introduction

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

Prototype

@Override
    public final short getColumn() 

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());
}