Package writer2latex.xmerge
Class EmbeddedBinaryObject
- java.lang.Object
-
- writer2latex.xmerge.EmbeddedObject
-
- writer2latex.xmerge.EmbeddedBinaryObject
-
public class EmbeddedBinaryObject extends EmbeddedObject
This class represents embedded object's in an OpenOffice.org document that have a binary representation.
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
objData
The object's binary representation.-
Fields inherited from class writer2latex.xmerge.EmbeddedObject
hasChanged, objName, objType, zipFile
-
-
Constructor Summary
Constructors Constructor Description EmbeddedBinaryObject(java.lang.String name, java.lang.String type)
Constructor for an embedded object stored using an XML representation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getBinaryData()
This method returns the data for this object.void
setBinaryData(byte[] data)
Sets the data for this object.-
Methods inherited from class writer2latex.xmerge.EmbeddedObject
getName, getType
-
-
-
-
Method Detail
-
getBinaryData
public byte[] getBinaryData()
This method returns the data for this object.- Returns:
- A
byte
array containing the object's data.
-
setBinaryData
public void setBinaryData(byte[] data)
Sets the data for this object.- Parameters:
data
- Abyte
array containing data for the object.
-
-