Package org.apache.poi.hslf.record
Class ExObjList
- java.lang.Object
-
- org.apache.poi.hslf.record.Record
-
- org.apache.poi.hslf.record.RecordContainer
-
- org.apache.poi.hslf.record.ExObjList
-
- All Implemented Interfaces:
GenericRecord
public class ExObjList extends RecordContainer
This class holds the links to exernal objects referenced from the document.
-
-
Field Summary
-
Fields inherited from class org.apache.poi.hslf.record.RecordContainer
_children
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExHyperlinkget(int id)Lookup a hyperlink by its unique idExHyperlink[]getExHyperlinks()Returns all the ExHyperlinksExObjListAtomgetExObjListAtom()Returns the ExObjListAtom of this listlonggetRecordType()We are of type 1033voidwriteOut(OutputStream out)Write the contents of the record back, so it can be written to disk-
Methods inherited from class org.apache.poi.hslf.record.RecordContainer
addChildAfter, addChildBefore, appendChildRecord, findFirstOfType, getChildRecords, getGenericProperties, handleParentAwareRecords, isAnAtom, removeChild, setChildRecord, writeOut
-
Methods inherited from class org.apache.poi.hslf.record.Record
buildRecordAtOffset, createRecordForType, findChildRecords, getGenericChildren, getGenericRecordType, writeLittleEndian, writeLittleEndian
-
-
-
-
Method Detail
-
getExObjListAtom
public ExObjListAtom getExObjListAtom()
Returns the ExObjListAtom of this list
-
getExHyperlinks
public ExHyperlink[] getExHyperlinks()
Returns all the ExHyperlinks
-
getRecordType
public long getRecordType()
We are of type 1033- Specified by:
getRecordTypein classRecord
-
writeOut
public void writeOut(OutputStream out) throws IOException
Write the contents of the record back, so it can be written to disk- Specified by:
writeOutin classRecord- Throws:
IOException
-
get
public ExHyperlink get(int id)
Lookup a hyperlink by its unique id- Parameters:
id- hyperlink id- Returns:
- found
ExHyperlinkornull
-
-