diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/SEPX.java b/src/scratchpad/src/org/apache/poi/hwpf/model/SEPX.java index 77030742d..880d4956e 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/model/SEPX.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/model/SEPX.java @@ -58,4 +58,10 @@ public final class SEPX extends BytePropertyNode } return false; } + + public String toString() + { + return "SEPX from " + getStart() + " to " + getEnd() + " (in bytes " + + getStartBytes() + " to " + getEndBytes() + ")"; + } }