|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EscherRecord | |
---|---|
org.apache.poi.ddf | This package contains classes for decoding the Microsoft Office Drawing format otherwise known as escher henceforth known in POI as the Dreadful Drawing Format. |
org.apache.poi.hpbf.model | |
org.apache.poi.hslf.dev | |
org.apache.poi.hslf.model | |
org.apache.poi.hslf.record | |
org.apache.poi.hssf.model | Provides low level API structures for reading, writing, modifying XLS files. |
org.apache.poi.hssf.record | Record package contains class representations for XLS binary strutures. |
org.apache.poi.hwpf.model |
Uses of EscherRecord in org.apache.poi.ddf |
---|
Subclasses of EscherRecord in org.apache.poi.ddf | |
---|---|
class |
AbstractEscherOptRecord
Common abstract class for EscherOptRecord and
EscherTertiaryOptRecord |
class |
EscherBitmapBlip
|
class |
EscherBlipRecord
|
class |
EscherBlipWMFRecord
The blip record is used to hold details about large binary objects that occur in escher such as JPEG, GIF, PICT and WMF files. |
class |
EscherBSERecord
The BSE record is related closely to the EscherBlipRecord and stores
extra information about the blip. |
class |
EscherChildAnchorRecord
The escher child achor record is used to specify the position of a shape under an existing group. |
class |
EscherClientAnchorRecord
The escher client anchor specifies which rows and cells the shape is bound to as well as the offsets within those cells. |
class |
EscherClientDataRecord
The EscherClientDataRecord is used to store client specific data about the position of a shape within a container. |
class |
EscherContainerRecord
Escher container records store other escher records as children. |
class |
EscherDggRecord
This record defines the drawing groups used for a particular sheet. |
class |
EscherDgRecord
This record simply holds the number of shapes in the drawing group and the last shape id used for this drawing group. |
class |
EscherMetafileBlip
|
class |
EscherOptRecord
The opt record is used to store property values for a shape. |
class |
EscherPictBlip
|
class |
EscherSpgrRecord
The spgr record defines information about a shape group. |
class |
EscherSplitMenuColorsRecord
A list of the most recently used colours for the drawings contained in this document. |
class |
EscherSpRecord
Together the the EscherOptRecord this record defines some of the basic properties of a shape. |
class |
EscherTertiaryOptRecord
"The OfficeArtTertiaryFOPT record specifies a table of OfficeArtRGFOPTE properties, as defined in section 2.3.1." -- [MS-ODRAW] -- v20110608; Office Drawing Binary File Format |
class |
EscherTextboxRecord
Holds data from the parent application. |
class |
UnknownEscherRecord
This record is used whenever a escher record is encountered that we do not explicitly support. |
Methods in org.apache.poi.ddf with type parameters of type EscherRecord | ||
---|---|---|
|
EscherContainerRecord.getChildById(short recordId)
|
Methods in org.apache.poi.ddf that return EscherRecord | |
---|---|
EscherRecord |
EscherRecordFactory.createRecord(byte[] data,
int offset)
Create a new escher record from the data provided. |
EscherRecord |
DefaultEscherRecordFactory.createRecord(byte[] data,
int offset)
Generates an escher record including the any children contained under that record. |
EscherRecord |
EscherRecord.getChild(int index)
Returns the indexed child record. |
EscherRecord |
EscherContainerRecord.getChild(int index)
|
Methods in org.apache.poi.ddf that return types with arguments of type EscherRecord | |
---|---|
java.util.Iterator<EscherRecord> |
EscherContainerRecord.getChildIterator()
|
java.util.List<EscherRecord> |
UnknownEscherRecord.getChildRecords()
|
java.util.List<EscherRecord> |
EscherRecord.getChildRecords()
|
java.util.List<EscherRecord> |
EscherContainerRecord.getChildRecords()
|
Methods in org.apache.poi.ddf with parameters of type EscherRecord | |
---|---|
void |
EscherContainerRecord.addChildBefore(EscherRecord record,
int insertBeforeRecordId)
|
void |
UnknownEscherRecord.addChildRecord(EscherRecord childRecord)
|
void |
EscherContainerRecord.addChildRecord(EscherRecord record)
|
void |
NullEscherSerializationListener.afterRecordSerialize(int offset,
short recordId,
int size,
EscherRecord record)
|
void |
EscherSerializationListener.afterRecordSerialize(int offset,
short recordId,
int size,
EscherRecord record)
Fired after a record has been serialized. |
void |
NullEscherSerializationListener.beforeRecordSerialize(int offset,
short recordId,
EscherRecord record)
|
void |
EscherSerializationListener.beforeRecordSerialize(int offset,
short recordId,
EscherRecord record)
Fired before a given escher record is serialized. |
boolean |
EscherContainerRecord.removeChildRecord(EscherRecord toBeRemoved)
|
Method parameters in org.apache.poi.ddf with type arguments of type EscherRecord | |
---|---|
void |
EscherContainerRecord.getRecordsById(short recordId,
java.util.List<EscherRecord> out)
Recursively find records with the specified record ID |
void |
UnknownEscherRecord.setChildRecords(java.util.List<EscherRecord> childRecords)
|
void |
EscherRecord.setChildRecords(java.util.List<EscherRecord> childRecords)
Sets the child records for this record. |
void |
EscherContainerRecord.setChildRecords(java.util.List<EscherRecord> childRecords)
replaces the internal child list with the contents of the supplied childRecords |
Uses of EscherRecord in org.apache.poi.hpbf.model |
---|
Methods in org.apache.poi.hpbf.model that return EscherRecord | |
---|---|
EscherRecord[] |
EscherPart.getEscherRecords()
|
Uses of EscherRecord in org.apache.poi.hslf.dev |
---|
Methods in org.apache.poi.hslf.dev with parameters of type EscherRecord | |
---|---|
java.lang.String |
SlideShowRecordDumper.printEscherRecord(EscherRecord er)
|
Uses of EscherRecord in org.apache.poi.hslf.model |
---|
Methods in org.apache.poi.hslf.model that return EscherRecord | |
---|---|
static EscherRecord |
Shape.getEscherChild(EscherContainerRecord owner,
int recordId)
Helper method to return escher child by record ID |
Uses of EscherRecord in org.apache.poi.hslf.record |
---|
Methods in org.apache.poi.hslf.record that return EscherRecord | |
---|---|
EscherRecord[] |
PPDrawing.getEscherRecords()
Get access to the underlying Escher Records |
Uses of EscherRecord in org.apache.poi.hssf.model |
---|
Methods in org.apache.poi.hssf.model that return EscherRecord | |
---|---|
static EscherRecord |
ConvertAnchor.createAnchor(HSSFAnchor userAnchor)
|
protected EscherRecord |
AbstractShape.createAnchor(HSSFAnchor userAnchor)
Creates an escher anchor record from a HSSFAnchor. |
EscherRecord |
TextboxShape.getEscherTextbox()
|
Uses of EscherRecord in org.apache.poi.hssf.record |
---|
Methods in org.apache.poi.hssf.record that return EscherRecord | |
---|---|
EscherRecord |
AbstractEscherHolderRecord.findFirstWithId(short id)
Descends into all our children, returning the first EscherRecord with the given id, or null if none found |
EscherRecord |
AbstractEscherHolderRecord.getEscherRecord(int index)
|
Methods in org.apache.poi.hssf.record that return types with arguments of type EscherRecord | |
---|---|
java.util.List<EscherRecord> |
AbstractEscherHolderRecord.getEscherRecords()
|
Methods in org.apache.poi.hssf.record with parameters of type EscherRecord | |
---|---|
boolean |
AbstractEscherHolderRecord.addEscherRecord(EscherRecord element)
|
void |
AbstractEscherHolderRecord.addEscherRecord(int index,
EscherRecord element)
|
Uses of EscherRecord in org.apache.poi.hwpf.model |
---|
Methods in org.apache.poi.hwpf.model that return EscherRecord | |
---|---|
EscherRecord |
EscherRecordHolder.findFirstWithId(short id)
Descends into all our children, returning the first EscherRecord with the given id, or null if none found |
Methods in org.apache.poi.hwpf.model that return types with arguments of type EscherRecord | |
---|---|
java.util.List<EscherRecord> |
PICFAndOfficeArtData.getBlipRecords()
|
java.util.List<EscherRecord> |
EscherRecordHolder.getEscherRecords()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |