diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/GenericPropertyNode.java b/src/scratchpad/src/org/apache/poi/hwpf/model/GenericPropertyNode.java index 7b2730d79a..32b4789125 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/model/GenericPropertyNode.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/model/GenericPropertyNode.java @@ -30,5 +30,15 @@ public final class GenericPropertyNode return (byte[])_buf; } - + @Override + public String toString() + { + return "GenericPropertyNode [" + + getStart() + + "; " + + getEnd() + + ") " + + ( getBytes() != null ? getBytes().length + " byte(s)" + : "null" ); + } }