summaryrefslogtreecommitdiff
path: root/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java')
-rw-r--r--xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java134
1 files changed, 134 insertions, 0 deletions
diff --git a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
new file mode 100644
index 000000000000..1aa6da472ccb
--- /dev/null
+++ b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
@@ -0,0 +1,134 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+package org.openoffice.xmerge.converter.xml.sxc.pexcel.records;
+
+import java.io.OutputStream;
+import java.io.InputStream;
+import java.io.IOException;
+
+import org.openoffice.xmerge.util.Debug;
+import org.openoffice.xmerge.util.EndianConverter;
+
+public abstract class CellValue implements BIFFRecord {
+
+ protected byte[] rw = new byte[2];
+ protected byte col;
+ protected byte[] ixfe = new byte[2];
+
+ /**
+ * Get the row number of this cell
+ *
+ * @return the row number of this cell
+ */
+ public int getRow() {
+ return EndianConverter.readShort(rw) + 1;
+ }
+
+ /**
+ * Set the row number of this cell
+ *
+ * @param row sets the row number for this cell
+ */
+ public void setRow(int row) {
+ this.rw = EndianConverter.writeShort((short) (row - 1));
+ }
+ /**
+ * Get the Index to the <code>ExtendedFormat</code>
+ *
+ * @return the index number of this cell's <code>ExtendedFormat</code>
+ */
+ public int getIxfe() {
+ return EndianConverter.readShort(ixfe);
+ }
+
+ /**
+ * Sets the Index to the <code>ExtendedFormat</code>
+ *
+ * @param ixfe sets the index number for this cell's <code>ExtendedFormat</code>
+ */
+ public void setIxfe(int ixfe) {
+ this.ixfe = EndianConverter.writeShort((short) (ixfe));
+ }
+
+ /**
+ * Get the column number of this cell
+ *
+ * @return the column number of this cell
+ */
+ public int getCol() {
+ return col + 1; // The cols start at 1
+ }
+
+ /**
+ * Set the column number of this cell
+ *
+ * @param col sets the column number for this cell
+ */
+ public void setCol(int col) {
+ this.col = (byte) (col - 1); // The cols start at 1
+ }
+
+ /**
+ * Writes basic cell value attributes to the specified <code>Outputstream</code>
+ *
+ * @param output the <code>OutputStream</code> to write to
+ */
+ public void write(OutputStream output) throws IOException {
+
+ output.write(rw);
+ output.write(col);
+ output.write(ixfe);
+ }
+
+ /**
+ * Reads a <code>LabelCell</code> from the specified <code>Inputstream</code>
+ *
+ * @param input the <code>InputStream</code> to read from
+ */
+ public int read(InputStream input) throws IOException {
+
+ int numOfBytesRead = input.read(rw);
+ col += input.read();
+ numOfBytesRead++;
+ numOfBytesRead += input.read(ixfe);
+
+ Debug.log(Debug.TRACE, "\tRow : "+ EndianConverter.readShort(rw) +
+ " Column : " + col +
+ " ixfe : " + EndianConverter.readShort(ixfe));
+
+ return numOfBytesRead;
+ }
+
+ /**
+ * Returns the contents of the cell as a String
+ *
+ * @return the contents of the cell
+ */
+ abstract public String getString() throws IOException;
+
+}