| /AOO42X/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ |
| H A D | Workbook.java | 376 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 D | LabelCell.java | 51 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 D | FloatNumber.java | 59 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 D | Formula.java | 58 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 D | PocketExcelEncoder.java | 192 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 D | MinicalcEncoder.java | 290 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 D | SxcDocumentDeserializer.java | 548 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 D | SpreadsheetEncoder.java | 82 Format fmt, String cellContents) throws IOException; in addCell() argument
|