add toString() to PlexOfCps

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1144856 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-10 13:07:41 +00:00
parent 4a0c0f2898
commit a5407bd08f

View File

@ -154,4 +154,10 @@ public final class PlexOfCps
return _props.toArray( new GenericPropertyNode[_props.size()] );
}
@Override
public String toString()
{
return "PLCF (cbStruct: " + _cbStruct + "; iMac: " + _iMac + ")";
}
}