Package org.apache.poi.hslf.usermodel
Class HSLFSlideShowFactory
- java.lang.Object
-
- org.apache.poi.sl.usermodel.SlideShowFactory
-
- org.apache.poi.hslf.usermodel.HSLFSlideShowFactory
-
@Internal public class HSLFSlideShowFactory extends SlideShowFactory
Helper class which is instantiated by reflection fromSlideShowFactory.create(java.io.File)
and similar
-
-
Constructor Summary
Constructors Constructor Description HSLFSlideShowFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HSLFSlideShow
createSlideShow(DirectoryNode root)
Creates a HSLFSlideShow from the given DirectoryNodestatic HSLFSlideShow
createSlideShow(POIFSFileSystem fs)
Creates a HSLFSlideShow from the given NPOIFSFileSystem
-
-
-
Method Detail
-
createSlideShow
public static HSLFSlideShow createSlideShow(POIFSFileSystem fs) throws java.io.IOException
Creates a HSLFSlideShow from the given NPOIFSFileSystemNote that in order to properly release resources the SlideShow should be closed after use.
- Throws:
java.io.IOException
-
createSlideShow
public static HSLFSlideShow createSlideShow(DirectoryNode root) throws java.io.IOException
Creates a HSLFSlideShow from the given DirectoryNodeNote that in order to properly release resources the SlideShow should be closed after use.
- Throws:
java.io.IOException
-
-