Fixed toString()

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-07-20 12:33:18 +00:00
parent a0e69e8969
commit 1c4f1d65f5
1 changed files with 3 additions and 0 deletions

View File

@ -69,6 +69,7 @@ import org.apache.poi.util.LittleEndian;
* The RecordFactory converts this to a set of BlankRecord objects.<P>
* REFERENCE: PG 329 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P>
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Glen Stampoultzis (glens at apache.org)
* @version 2.0-pre
* @see org.apache.poi.hssf.record.RecordFactory
* @see org.apache.poi.hssf.record.BlankRecord
@ -212,6 +213,8 @@ public class MulBlankRecord
StringBuffer buffer = new StringBuffer();
buffer.append("[MULBLANK]\n");
buffer.append("row = ")
.append(Integer.toHexString(getRow())).append("\n");
buffer.append("firstcol = ")
.append(Integer.toHexString(getFirstColumn())).append("\n");
buffer.append(" lastcol = ")