summaryrefslogtreecommitdiff
path: root/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java')
-rw-r--r--xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java138
1 files changed, 0 insertions, 138 deletions
diff --git a/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java b/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
deleted file mode 100644
index 3c4d875a923a..000000000000
--- a/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/CellValue.java
+++ /dev/null
@@ -1,138 +0,0 @@
-/************************************************************************
- *
- * 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.DataInputStream;
-import java.io.OutputStream;
-import java.io.InputStream;
-import java.io.IOException;
-
-import org.openoffice.xmerge.util.Debug;
-import org.openoffice.xmerge.util.EndianConverter;
-import org.openoffice.xmerge.converter.xml.sxc.pexcel.PocketExcelConstants;
-
-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 row number of this cell
- *
- * @param col sets the row 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 os the <code>OutputStream</code> to write to
- */
- public void write(OutputStream output) throws IOException {
-
- output.write(rw);
- output.write(col);
- output.write(ixfe);
- }
-
- /**
- * Writes a<code>LabelCell</code> to the specified <code>Outputstream</code>
- *
- * @param os the <code>OutputStream</code> to write to
- */
- 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;
-
-}
-