Class HemfPlusObject.EmfPlusObject
- java.lang.Object
-
- org.apache.poi.hemf.record.emfplus.HemfPlusObject.EmfPlusObject
-
- All Implemented Interfaces:
GenericRecord,HemfPlusMisc.EmfPlusObjectId,HemfPlusRecord,HwmfObjectTableEntry
- Enclosing class:
- HemfPlusObject
public static class HemfPlusObject.EmfPlusObject extends Object implements HemfPlusRecord, HemfPlusMisc.EmfPlusObjectId, HwmfObjectTableEntry
The EmfPlusObject record specifies an object for use in graphics operations. The object definition can span multiple records), which is indicated by the value of the Flags field.
-
-
Field Summary
-
Fields inherited from interface org.apache.poi.hemf.record.emfplus.HemfPlusMisc.EmfPlusObjectId
OBJECT_ID
-
-
Constructor Summary
Constructors Constructor Description EmfPlusObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidapplyObject(HwmfGraphics ctx)voiddraw(HemfGraphics ctx)Draws the record, the default redirects to the parent WMF record drawingHemfPlusRecordTypegetEmfPlusRecordType()intgetFlags()Map<String,Supplier<?>>getGenericProperties()<T extends HemfPlusObject.EmfPlusObjectData>
TgetObjectData()HemfPlusObject.EmfPlusObjectTypegetObjectType()intgetTotalObjectSize()longinit(LittleEndianInputStream leis, long dataSize, long recordId, int flags)Init record from stream-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren
-
Methods inherited from interface org.apache.poi.hemf.record.emfplus.HemfPlusMisc.EmfPlusObjectId
getObjectId
-
Methods inherited from interface org.apache.poi.hemf.record.emfplus.HemfPlusRecord
calcBounds, getGenericRecordType
-
-
-
-
Method Detail
-
getEmfPlusRecordType
public HemfPlusRecordType getEmfPlusRecordType()
- Specified by:
getEmfPlusRecordTypein interfaceHemfPlusRecord
-
getFlags
public int getFlags()
- Specified by:
getFlagsin interfaceHemfPlusMisc.EmfPlusObjectId- Specified by:
getFlagsin interfaceHemfPlusRecord
-
getObjectType
public HemfPlusObject.EmfPlusObjectType getObjectType()
-
getObjectData
public <T extends HemfPlusObject.EmfPlusObjectData> T getObjectData()
-
getTotalObjectSize
public int getTotalObjectSize()
-
init
public long init(LittleEndianInputStream leis, long dataSize, long recordId, int flags) throws IOException
Description copied from interface:HemfPlusRecordInit record from stream- Specified by:
initin interfaceHemfPlusRecord- Parameters:
leis- the little endian input streamdataSize- the size limit for this recordrecordId- the id of theHemfPlusRecordTypeflags- the record flags- Returns:
- count of processed bytes
- Throws:
IOException- when the inputstream is malformed
-
draw
public void draw(HemfGraphics ctx)
Description copied from interface:HemfPlusRecordDraws the record, the default redirects to the parent WMF record drawing- Specified by:
drawin interfaceHemfPlusRecord- Parameters:
ctx- the drawing context
-
applyObject
public void applyObject(HwmfGraphics ctx)
- Specified by:
applyObjectin interfaceHwmfObjectTableEntry
-
getGenericProperties
public Map<String,Supplier<?>> getGenericProperties()
- Specified by:
getGenericPropertiesin interfaceGenericRecord
-
-