コード例 #1
0
ファイル: DefaultSheet.java プロジェクト: stefandmn/AREasy
 /**
  * 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));
 }