Package org.apache.poi.xslf.usermodel
Class XSLFSlideShow
java.lang.Object
org.apache.poi.ooxml.POIXMLDocumentPart
org.apache.poi.ooxml.POIXMLDocument
org.apache.poi.xslf.usermodel.XSLFSlideShow
- All Implemented Interfaces:
Closeable,AutoCloseable
Experimental class to do low level processing of pptx files.
Most users should use the higher level
XMLSlideShow instead.
If you are using these low level classes, then you
will almost certainly need to refer to the OOXML
specifications from
http://www.ecma-international.org/publications/standards/Ecma-376.htm
WARNING - APIs expected to change rapidly-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.poi.ooxml.POIXMLDocumentPart
POIXMLDocumentPart.RelationPart -
Field Summary
Fields inherited from class org.apache.poi.ooxml.POIXMLDocument
DOCUMENT_CREATOR, OLE_OBJECT_REL_TYPE, PACK_OBJECT_REL_TYPE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the document's embedded files.getNodesPart(CTSlideIdListEntry parentSlide) Gets the PackagePart of the notes for the given slide, or null if there isn't one.getNotes(CTSlideIdListEntry slide) Returns the low level notes object for the given slide, as found from the supplied slide referenceReturns the low level presentation base objectgetSlide(CTSlideIdListEntry slide) Returns the low level slide object from the supplied slide referenceReturns all the comments for the given slideReturns the low level slide master object from the supplied slide master referenceReturns the references from the presentation to its slide masters.getSlidePart(CTSlideIdListEntry slide) Returns the references from the presentation to its slides.Methods inherited from class org.apache.poi.ooxml.POIXMLDocument
close, getPackage, getProperties, openPackage, writeMethods inherited from class org.apache.poi.ooxml.POIXMLDocumentPart
_invokeOnDocumentRead, addRelation, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationPartById, getRelationParts, getRelations, isCommitted, setCommitted, toString
-
Constructor Details
-
XSLFSlideShow
-
XSLFSlideShow
-
-
Method Details
-
getPresentation
Returns the low level presentation base object -
getSlideReferences
Returns the references from the presentation to its slides. You'll need these to figure out the slide ordering, and to get at the actual slides themselves -
getSlideMasterReferences
Returns the references from the presentation to its slide masters. You'll need these to get at the actual slide masters themselves -
getSlideMasterPart
public PackagePart getSlideMasterPart(CTSlideMasterIdListEntry master) throws IOException, XmlException - Throws:
IOExceptionXmlException
-
getSlideMaster
@Internal public CTSlideMaster getSlideMaster(CTSlideMasterIdListEntry master) throws IOException, XmlException Returns the low level slide master object from the supplied slide master reference- Throws:
IOExceptionXmlException
-
getSlidePart
- Throws:
IOExceptionXmlException
-
getSlide
Returns the low level slide object from the supplied slide reference- Throws:
IOExceptionXmlException
-
getNodesPart
Gets the PackagePart of the notes for the given slide, or null if there isn't one.- Throws:
IOExceptionXmlException
-
getNotes
Returns the low level notes object for the given slide, as found from the supplied slide reference- Throws:
IOExceptionXmlException
-
getSlideComments
@Internal public CTCommentList getSlideComments(CTSlideIdListEntry slide) throws IOException, XmlException Returns all the comments for the given slide- Throws:
IOExceptionXmlException
-
getAllEmbeddedParts
Get the document's embedded files.- Specified by:
getAllEmbeddedPartsin classPOIXMLDocument- Returns:
- the document's embedded files
- Throws:
OpenXML4JException- if the embedded parts can't be determined
-