Package org.apache.fop.afp.modca
Class ObjectEnvironmentGroup
- java.lang.Object
-
- org.apache.fop.afp.modca.AbstractAFPObject
-
- org.apache.fop.afp.modca.AbstractStructuredObject
-
- org.apache.fop.afp.modca.AbstractTripletStructuredObject
-
- org.apache.fop.afp.modca.AbstractNamedAFPObject
-
- org.apache.fop.afp.modca.ObjectEnvironmentGroup
-
- All Implemented Interfaces:
Streamable
public final class ObjectEnvironmentGroup extends AbstractNamedAFPObject
An Object Environment Group (OEG) may be associated with an object and is contained within the object's begin-end envelope. The object environment group defines the object's origin and orientation on the page, and can contain font and color attribute table information. The scope of an object environment group is the scope of its containing object. An application that creates a data-stream document may omit some of the parameters normally contained in the object environment group, or it may specify that one or more default values are to be used.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.fop.afp.modca.AbstractAFPObject
AbstractAFPObject.Category, AbstractAFPObject.Type
-
-
Field Summary
-
Fields inherited from class org.apache.fop.afp.modca.AbstractNamedAFPObject
name
-
Fields inherited from class org.apache.fop.afp.modca.AbstractTripletStructuredObject
triplets
-
Fields inherited from class org.apache.fop.afp.modca.AbstractAFPObject
LOG, SF_CLASS, SF_HEADER_LENGTH
-
-
Constructor Summary
Constructors Constructor Description ObjectEnvironmentGroup(java.lang.String name)
Constructor for the ObjectEnvironmentGroup, this takes a name parameter which must be 8 characters long.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectAreaDescriptor
getObjectAreaDescriptor()
Returns the object area descriptorvoid
setDataDescriptor(AbstractDescriptor dataDescriptor)
Sets the data descriptorvoid
setMapContainerData(MapContainerData mapContainerData)
Sets the map container datavoid
setMapDataResource(MapDataResource mapDataResource)
Sets the map data resourcevoid
setMapImageObject(MapImageObject mapImageObject)
Sets the Map Image Object (MIO).void
setObjectAreaDescriptor(ObjectAreaDescriptor objectAreaDescriptor)
Sets the Object Area Descriptorvoid
setObjectAreaPosition(ObjectAreaPosition objectAreaPosition)
Sets the Object Area Positionvoid
setPresentationEnvironmentControl(PresentationEnvironmentControl presentationEnvironmentControl)
Sets the presentation environment controlprotected void
writeContent(java.io.OutputStream os)
Helper method to write the contents of the Object.protected void
writeEnd(java.io.OutputStream os)
Helper method to write the end of the Object.protected void
writeStart(java.io.OutputStream os)
Helper method to write the start of the Object.-
Methods inherited from class org.apache.fop.afp.modca.AbstractNamedAFPObject
copySF, getName, getNameBytes, getNameLength, setName, toString
-
Methods inherited from class org.apache.fop.afp.modca.AbstractTripletStructuredObject
addTriplet, addTriplets, getFullyQualifiedName, getTripletDataLength, getTriplets, hasTriplet, hasTriplets, setComment, setFullyQualifiedName, setFullyQualifiedName, setObjectClassification, writeTriplets
-
Methods inherited from class org.apache.fop.afp.modca.AbstractStructuredObject
writeToStream
-
Methods inherited from class org.apache.fop.afp.modca.AbstractAFPObject
copySF, truncate, writeChunksToStream, writeObjects
-
-
-
-
Method Detail
-
setObjectAreaDescriptor
public void setObjectAreaDescriptor(ObjectAreaDescriptor objectAreaDescriptor)
Sets the Object Area Descriptor- Parameters:
objectAreaDescriptor
- the object area descriptor
-
setObjectAreaPosition
public void setObjectAreaPosition(ObjectAreaPosition objectAreaPosition)
Sets the Object Area Position- Parameters:
objectAreaPosition
- the object area position
-
setMapImageObject
public void setMapImageObject(MapImageObject mapImageObject)
Sets the Map Image Object (MIO).- Parameters:
mapImageObject
- the MIO structured field
-
writeStart
protected void writeStart(java.io.OutputStream os) throws java.io.IOException
Helper method to write the start of the Object.- Overrides:
writeStart
in classAbstractStructuredObject
- Parameters:
os
- The stream to write to- Throws:
java.io.IOException
- throws an I/O exception if one occurred
-
writeContent
protected void writeContent(java.io.OutputStream os) throws java.io.IOException
Helper method to write the contents of the Object.- Overrides:
writeContent
in classAbstractStructuredObject
- Parameters:
os
- The stream to write to- Throws:
java.io.IOException
- throws an I/O exception if one occurred
-
writeEnd
protected void writeEnd(java.io.OutputStream os) throws java.io.IOException
Helper method to write the end of the Object.- Overrides:
writeEnd
in classAbstractStructuredObject
- Parameters:
os
- The stream to write to- Throws:
java.io.IOException
- an I/O exception if one occurred
-
setPresentationEnvironmentControl
public void setPresentationEnvironmentControl(PresentationEnvironmentControl presentationEnvironmentControl)
Sets the presentation environment control- Parameters:
presentationEnvironmentControl
- the presentation environment control
-
setDataDescriptor
public void setDataDescriptor(AbstractDescriptor dataDescriptor)
Sets the data descriptor- Parameters:
dataDescriptor
- the data descriptor
-
setMapDataResource
public void setMapDataResource(MapDataResource mapDataResource)
Sets the map data resource- Parameters:
mapDataResource
- the map data resource
-
setMapContainerData
public void setMapContainerData(MapContainerData mapContainerData)
Sets the map container data- Parameters:
mapContainerData
- the map container data
-
getObjectAreaDescriptor
public ObjectAreaDescriptor getObjectAreaDescriptor()
Returns the object area descriptor- Returns:
- the object area descriptor
-
-