git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353332
13f79535-47bb-0310-9956-
ffa450edef68
*
* @return The property ID's string value
*/
- public String getPIDString(final int pid)
+ public String getPIDString(final long pid)
{
String s = null;
if (dictionary != null)
- s = (String) dictionary.get(new Integer(pid));
+ s = (String) dictionary.get(new Long(pid));
if (s == null)
s = SectionIDMap.getPIDString(getFormatID().getBytes(), pid);
if (s == null)
* @param id The ID.
* @return The ID string associated with <var>id</var>.
*/
- public Object get(final int id)
+ public Object get(final long id)
{
- return get(new Integer(id));
+ return get(new Long(id));
}
* string "[undefined]" is returned.
*/
public static String getPIDString(final byte[] sectionFormatID,
- final int pid)
+ final long pid)
{
final PropertyIDMap m =
(PropertyIDMap) getInstance().get(sectionFormatID);