Catalogen

CellReference @Cluster 2 (firstcellreference, getrow, true)


NamedRangeXSSFImpl.java

creates an empty workbook object with the specified sheet .

35. CellReference firstCellReference = areaReference.getFirstCell();
37. return new Range(workbook.getSheet(sheetName), firstCellReference.getCol(), firstCellReference.getRow(), lastCellReference.getCol(), lastCellReference.getRow());

AbstractHandler.java

sets the

156. CellReference crFirst = new CellReference( state.currentSheet.getSheetName(), row1, col1, true, true );
158. String formula = crFirst.formatAsString() + ":" + crLast.formatAsString();

HyperlinksTest.java

get the currently referenced paragraph / / value ( or if the file is specified ) in this workbook @ return index of the

47. CellReference cr = new CellReference(zeroBasedRow, zeroBasedCol);
48. return cr.formatAsString();

NamedRangeHSSFImpl.java

creates an empty workbook object with the specified sheet .

41. CellReference firstCellReference = areaReference.getFirstCell();
43. return new Range(workbook.getSheet(sheetName), firstCellReference.getCol(), firstCellReference.getRow(), lastCellReference.getCol(), lastCellReference.getRow());

AbstractHandler.java

sets the

138. CellReference crFirst = new CellReference( state.currentSheet.getSheetName(), row1, col1, true, true );
140. String formula = crFirst.formatAsString() + ":" + crLast.formatAsString();

AbstractHandler.java

sets the

151. CellReference crFirst = new CellReference( state.currentSheet.getSheetName(), row1, col1, true, true );
153. String formula = crFirst.formatAsString() + ":" + crLast.formatAsString();

HyperlinksTest.java

get the currently referenced paragraph / / value ( or if the file is specified ) in this workbook @ return index of the

69. CellReference cr = new CellReference(zeroBasedRow, zeroBasedCol);
70. return cr.formatAsString();

XMLGeneration.java

sets the

292. CellReference firstCellReference = areaReference
301.     String.valueOf(firstCellReference.getCol() + 1));
303.     String.valueOf(firstCellReference.getRow() + 1));

ExcelWriterStep.java

tests that the create and sets the font and row height are not only in ( name = “ 1 “ )

769. CellReference cellRef = new CellReference(data.realStartingCell);
770. data.startingRow = cellRef.getRow();
771. data.startingCol = cellRef.getCol();