Esempio n. 1
0
 /**
  * Returns the cell for the specified location eg. "A4", using the CellReferenceHelper
  *
  * @param loc the cell reference
  * @return the cell at the specified co-ordinates
  */
 public Cell getCell(String loc) {
   return getCell(CellReferenceHelper.getColumn(loc), CellReferenceHelper.getRow(loc));
 }