Have more useful information on how the different IDs are used

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@389284 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2006-03-27 21:34:29 +00:00
parent 6a433a6b21
commit 061f6f3f7e
1 changed files with 8 additions and 2 deletions

View File

@ -34,12 +34,18 @@ public class SlidePersistAtom extends RecordAtom
private byte[] _header; private byte[] _header;
private static long _type = 1011l; private static long _type = 1011l;
/** Slide reference ID. A machine readable "page id" */ /**
* Slide reference ID. Should correspond to the PersistPtr
* "sheet ID" of the matching slide/notes record
*/
private int refID; private int refID;
private boolean hasShapesOtherThanPlaceholders; private boolean hasShapesOtherThanPlaceholders;
/** Number of placeholder texts that will follow in the SlideListWithText */ /** Number of placeholder texts that will follow in the SlideListWithText */
private int numPlaceholderTexts; private int numPlaceholderTexts;
/** Less useful identifier */ /**
* The internal identifier (256+), which is used to tie slides
* and notes together
*/
private int slideIdentifier; private int slideIdentifier;
/** Reserved fields. Who knows what they do */ /** Reserved fields. Who knows what they do */
private byte[] reservedFields; private byte[] reservedFields;