add SEPX.toString() for debug purposes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1142979 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-05 11:02:30 +00:00
parent 8bbbf6996f
commit e1e99605de

View File

@ -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() + ")";
}
}