Home
last modified time | relevance | path

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

/trunk/test/testcommon/source/org/openoffice/test/common/
H A DDataSheet.java100 Element dataEl = doc.createElement("Data"); in addRow() local
101 cellEl.appendChild(dataEl); in addRow()
103 dataEl.setAttribute("ss:Type", "Number"); in addRow()
104 dataEl.setTextContent(o.toString()); in addRow()
106 dataEl.setAttribute("ss:Type", "Boolean"); in addRow()
107 dataEl.setTextContent(o.toString()); in addRow()
109 dataEl.setAttribute("ss:Type", "String"); in addRow()
110 dataEl.setTextContent(DATEFORMAT.format((Date) o)); in addRow()
112 dataEl.setAttribute("ss:Type", "String"); in addRow()
113 dataEl.setTextContent(o == null ? "" : o.toString()); in addRow()

Completed in 8 milliseconds