improved toString and refactored toFormulaString on Area(3D)Ptg
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@658833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
15db21d326
commit
b1ad25f7e3
@ -27,7 +27,7 @@ import org.apache.poi.util.LittleEndian;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Title: Area 3D Ptg - 3D referecnce (Sheet + Area)<P>
|
* Title: Area 3D Ptg - 3D reference (Sheet + Area)<P>
|
||||||
* Description: Defined a area in Extern Sheet. <P>
|
* Description: Defined a area in Extern Sheet. <P>
|
||||||
* REFERENCE: <P>
|
* REFERENCE: <P>
|
||||||
* @author Libin Roman (Vista Portal LDT. Developer)
|
* @author Libin Roman (Vista Portal LDT. Developer)
|
||||||
@ -35,7 +35,6 @@ import org.apache.poi.util.LittleEndian;
|
|||||||
* @author Jason Height (jheight at chariot dot net dot au)
|
* @author Jason Height (jheight at chariot dot net dot au)
|
||||||
* @version 1.0-pre
|
* @version 1.0-pre
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class Area3DPtg extends Ptg implements AreaI
|
public class Area3DPtg extends Ptg implements AreaI
|
||||||
{
|
{
|
||||||
public final static byte sid = 0x3b;
|
public final static byte sid = 0x3b;
|
||||||
@ -84,23 +83,15 @@ public class Area3DPtg extends Ptg implements AreaI
|
|||||||
setExternSheetIndex(externalSheetIndex);
|
setExternSheetIndex(externalSheetIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString()
|
public String toString() {
|
||||||
{
|
StringBuffer sb = new StringBuffer();
|
||||||
StringBuffer buffer = new StringBuffer();
|
sb.append(getClass().getName());
|
||||||
|
sb.append(" [");
|
||||||
buffer.append( "AreaPtg\n" );
|
sb.append("sheetIx=").append(getExternSheetIndex());
|
||||||
buffer.append( "Index to Extern Sheet = " + getExternSheetIndex() ).append( "\n" );
|
sb.append(" ! ");
|
||||||
buffer.append( "firstRow = " + getFirstRow() ).append( "\n" );
|
sb.append(AreaReference.formatAsString(this));
|
||||||
buffer.append( "lastRow = " + getLastRow() ).append( "\n" );
|
sb.append("]");
|
||||||
buffer.append( "firstCol = " + getFirstColumn() ).append( "\n" );
|
return sb.toString();
|
||||||
buffer.append( "lastCol = " + getLastColumn() ).append( "\n" );
|
|
||||||
buffer.append( "firstColRel= "
|
|
||||||
+ isFirstRowRelative() ).append( "\n" );
|
|
||||||
buffer.append( "lastColRowRel = "
|
|
||||||
+ isLastRowRelative() ).append( "\n" );
|
|
||||||
buffer.append( "firstColRel = " + isFirstColRelative() ).append( "\n" );
|
|
||||||
buffer.append( "lastColRel = " + isLastColRelative() ).append( "\n" );
|
|
||||||
return buffer.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void writeBytes( byte[] array, int offset )
|
public void writeBytes( byte[] array, int offset )
|
||||||
@ -284,7 +275,7 @@ public class Area3DPtg extends Ptg implements AreaI
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Now the normal area bit
|
// Now the normal area bit
|
||||||
retval.append( AreaPtg.toFormulaString(this, book) );
|
retval.append(AreaReference.formatAsString(this));
|
||||||
|
|
||||||
// All done
|
// All done
|
||||||
return retval.toString();
|
return retval.toString();
|
||||||
@ -326,6 +317,7 @@ public class Area3DPtg extends Ptg implements AreaI
|
|||||||
|
|
||||||
public int hashCode()
|
public int hashCode()
|
||||||
{
|
{
|
||||||
|
// TODO - hashCode seems to be unused
|
||||||
int result;
|
int result;
|
||||||
result = (int) field_1_index_extern_sheet;
|
result = (int) field_1_index_extern_sheet;
|
||||||
result = 29 * result + (int) field_2_first_row;
|
result = 29 * result + (int) field_2_first_row;
|
||||||
|
@ -114,23 +114,13 @@ public class AreaPtg extends Ptg implements AreaI {
|
|||||||
return "AreaPtg";
|
return "AreaPtg";
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString()
|
public String toString() {
|
||||||
{
|
StringBuffer sb = new StringBuffer();
|
||||||
StringBuffer buffer = new StringBuffer();
|
sb.append(getClass().getName());
|
||||||
|
sb.append(" [");
|
||||||
buffer.append(getAreaPtgName());
|
sb.append(AreaReference.formatAsString(this));
|
||||||
buffer.append("\n");
|
sb.append("]");
|
||||||
buffer.append("firstRow = " + getFirstRow()).append("\n");
|
return sb.toString();
|
||||||
buffer.append("lastRow = " + getLastRow()).append("\n");
|
|
||||||
buffer.append("firstCol = " + getFirstColumn()).append("\n");
|
|
||||||
buffer.append("lastCol = " + getLastColumn()).append("\n");
|
|
||||||
buffer.append("firstColRowRel= "
|
|
||||||
+ isFirstRowRelative()).append("\n");
|
|
||||||
buffer.append("lastColRowRel = "
|
|
||||||
+ isLastRowRelative()).append("\n");
|
|
||||||
buffer.append("firstColRel = " + isFirstColRelative()).append("\n");
|
|
||||||
buffer.append("lastColRel = " + isLastColRelative()).append("\n");
|
|
||||||
return buffer.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void writeBytes(byte [] array, int offset) {
|
public void writeBytes(byte [] array, int offset) {
|
||||||
@ -307,19 +297,8 @@ public class AreaPtg extends Ptg implements AreaI {
|
|||||||
field_4_last_column = column;
|
field_4_last_column = column;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toFormulaString(HSSFWorkbook book)
|
public String toFormulaString(HSSFWorkbook book) {
|
||||||
{
|
return AreaReference.formatAsString(this);
|
||||||
return toFormulaString(this, book);
|
|
||||||
}
|
|
||||||
protected static String toFormulaString(AreaI area, HSSFWorkbook book) {
|
|
||||||
CellReference topLeft = new CellReference(area.getFirstRow(),area.getFirstColumn(),!area.isFirstRowRelative(),!area.isFirstColRelative());
|
|
||||||
CellReference botRight = new CellReference(area.getLastRow(),area.getLastColumn(),!area.isLastRowRelative(),!area.isLastColRelative());
|
|
||||||
|
|
||||||
if(AreaReference.isWholeColumnReference(topLeft, botRight)) {
|
|
||||||
return (new AreaReference(topLeft, botRight)).formatAsString();
|
|
||||||
} else {
|
|
||||||
return topLeft.formatAsString() + ":" + botRight.formatAsString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public byte getDefaultOperandClass() {
|
public byte getDefaultOperandClass() {
|
||||||
|
@ -15,12 +15,13 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
==================================================================== */
|
==================================================================== */
|
||||||
|
|
||||||
|
|
||||||
package org.apache.poi.hssf.util;
|
package org.apache.poi.hssf.util;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.StringTokenizer;
|
import java.util.StringTokenizer;
|
||||||
|
|
||||||
|
import org.apache.poi.hssf.record.formula.AreaI;
|
||||||
|
|
||||||
public final class AreaReference {
|
public final class AreaReference {
|
||||||
|
|
||||||
/** The character (!) that separates sheet names from cell references */
|
/** The character (!) that separates sheet names from cell references */
|
||||||
@ -210,6 +211,18 @@ public final class AreaReference {
|
|||||||
}
|
}
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Formats a 2-D area as it would appear in a formula. See formatAsString() (no-arg)
|
||||||
|
*/
|
||||||
|
public static String formatAsString(AreaI area) {
|
||||||
|
CellReference topLeft = new CellReference(area.getFirstRow(),area.getFirstColumn(),!area.isFirstRowRelative(),!area.isFirstColRelative());
|
||||||
|
CellReference botRight = new CellReference(area.getLastRow(),area.getLastColumn(),!area.isLastRowRelative(),!area.isLastColRelative());
|
||||||
|
|
||||||
|
if(isWholeColumnReference(topLeft, botRight)) {
|
||||||
|
return (new AreaReference(topLeft, botRight)).formatAsString();
|
||||||
|
}
|
||||||
|
return topLeft.formatAsString() + ":" + botRight.formatAsString();
|
||||||
|
}
|
||||||
public String toString() {
|
public String toString() {
|
||||||
StringBuffer sb = new StringBuffer(64);
|
StringBuffer sb = new StringBuffer(64);
|
||||||
sb.append(getClass().getName()).append(" [");
|
sb.append(getClass().getName()).append(" [");
|
||||||
|
Loading…
Reference in New Issue
Block a user