Package org.apache.poi.hslf.usermodel
Class HSLFObjectData
- java.lang.Object
-
- org.apache.poi.hslf.usermodel.HSLFObjectData
-
- All Implemented Interfaces:
ObjectData
public class HSLFObjectData extends java.lang.Object implements ObjectData
A class that represents object data embedded in a slide show.
-
-
Constructor Summary
Constructors Constructor Description HSLFObjectData(ExOleObjStg storage)Creates the object data wrapping the record that contains the object data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExOleObjStggetExOleObjStg()Return the record that contains the object data.java.lang.StringgetFileName()java.io.InputStreamgetInputStream()Gets an input stream which returns the binary of the embedded data.java.lang.StringgetOLE2ClassName()java.io.OutputStreamgetOutputStream()voidsetData(byte[] data)Sets the embedded data.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.poi.sl.usermodel.ObjectData
getBytes, getDirectory, hasDirectoryEntry
-
-
-
-
Constructor Detail
-
HSLFObjectData
public HSLFObjectData(ExOleObjStg storage)
Creates the object data wrapping the record that contains the object data.- Parameters:
storage- the record that contains the object data.
-
-
Method Detail
-
getInputStream
public java.io.InputStream getInputStream()
Description copied from interface:ObjectDataGets an input stream which returns the binary of the embedded data.- Specified by:
getInputStreamin interfaceObjectData- Returns:
- the input stream which will contain the binary of the embedded data.
-
getOutputStream
public java.io.OutputStream getOutputStream() throws java.io.IOException- Specified by:
getOutputStreamin interfaceObjectData- Returns:
- the object data as stream (for writing)
- Throws:
java.io.IOException
-
setData
public void setData(byte[] data) throws java.io.IOExceptionSets the embedded data.- Parameters:
data- the embedded data.- Throws:
java.io.IOException
-
getExOleObjStg
public ExOleObjStg getExOleObjStg()
Return the record that contains the object data.- Returns:
- the record that contains the object data.
-
getOLE2ClassName
public java.lang.String getOLE2ClassName()
- Specified by:
getOLE2ClassNamein interfaceObjectData- Returns:
- the OLE2 Class Name of the object
-
getFileName
public java.lang.String getFileName()
- Specified by:
getFileNamein interfaceObjectData- Returns:
- a filename suggestion - inspecting/interpreting the Directory object probably gives a better result
-
-