Home
last modified time | relevance | path

Searched refs:cellContents (Results 1 – 8 of 8) sorted by relevance

/AOO42X/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DWorkbook.java376 public void addCell(int row,int col, Format fmt, String cellContents) in addCell() argument
388 if(cellContents.startsWith("=")) { in addCell()
390 Formula f = new Formula(row, col, cellContents, ixfe, fmt, this); in addCell()
403 FloatNumber num = new FloatNumber(row, col, cellContents, ixfe); in addCell()
406 Debug.log(Debug.TRACE,"Error could not parse Float " + cellContents); in addCell()
407 LabelCell lc = new LabelCell(row, col, cellContents, ixfe); in addCell()
411 if(cellContents.length()==0) { in addCell()
416 Debug.log(Debug.TRACE, "Label Cell : " + cellContents); in addCell()
417 LabelCell lc = new LabelCell(row, col, cellContents, ixfe); in addCell()
H A DLabelCell.java51 public LabelCell(int row, int column, String cellContents, int ixfe) in LabelCell() argument
54 setLabel(cellContents); in LabelCell()
131 private void setLabel(String cellContents) throws IOException { in setLabel() argument
132 rgch = cellContents.getBytes("UTF-16LE"); in setLabel()
133 cch = EndianConverter.writeShort((short)cellContents.length()); in setLabel()
H A DFloatNumber.java59 public FloatNumber(int row, int column, String cellContents, int ixfe) throws IOException { in FloatNumber() argument
64 double cellLong = (double) Double.parseDouble(cellContents); in FloatNumber()
H A DFormula.java58 public Formula(int row, int column, String cellContents, int ixfe, Format fmt, Workbook wb) in Formula() argument
66 setFormula(cellContents); in Formula()
/AOO42X/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/
H A DPocketExcelEncoder.java192 public void addCell(int row, int column, Format fmt, String cellContents) throws IOException { in addCell() argument
194 if (cellContents.startsWith("=")) { in addCell()
195 cellContents = parseFormula(cellContents); in addCell()
196 Debug.log(Debug.TRACE,"Parsing Formula " + cellContents); in addCell()
198 wb.addCell(row, column, fmt, cellContents); in addCell()
/AOO42X/main/xmerge/source/minicalc/java/org/openoffice/xmerge/converter/xml/sxc/minicalc/
H A DMinicalcEncoder.java290 public void addCell(int row, int column, Format fmt, String cellContents) throws IOException { in addCell() argument
295 if (cellContents.startsWith("=")) { in addCell()
296 cellContents = parseFormula(cellContents); in addCell()
297 Debug.log(Debug.INFO, "YAHOO Found Formula" + cellContents); in addCell()
300 CellDescriptor cellDes = new CellDescriptor(row, column, ca, cellContents); in addCell()
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DSxcDocumentDeserializer.java548 String cellContents = decoder.getCellContents(); in processCells() local
590 processCellData(cellElement, cellType, cellContents); in processCells()
598 textElement.appendChild(doc.createTextNode(cellContents)); in processCells()
600 Debug.log(Debug.TRACE, cellContents); in processCells()
H A DSpreadsheetEncoder.java82 Format fmt, String cellContents) throws IOException; in addCell() argument