Package org.apache.fop.afp.modca
Class PageSegment
- java.lang.Object
-
- All Implemented Interfaces:
Streamable
public class PageSegment extends AbstractNamedAFPObject
A page segment is a MO:DCA-P resource object. It may be stored in an external resource library or it may be carried in a resource group. Page segments contain any combination of IOCA image objects and GOCA graphics objects.
-
-
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 PageSegment(java.lang.String name)Main constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddObject(AbstractAFPObject object)Adds a resource object (image/graphic) to this page segmentjava.util.List<AbstractAFPObject>getObjects()Returns a list of objects contained withing this page segmentjava.lang.StringtoString()protected voidwriteContent(java.io.OutputStream os)Helper method to write the contents of the Object.protected voidwriteEnd(java.io.OutputStream os)Helper method to write the end of the Object.protected voidwriteStart(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
-
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
-
getObjects
public java.util.List<AbstractAFPObject> getObjects()
Returns a list of objects contained withing this page segment- Returns:
- a list of objects contained within this page segment
-
addObject
public void addObject(AbstractAFPObject object)
Adds a resource object (image/graphic) to this page segment- Parameters:
object- the resource objec to add to this page segment
-
writeStart
protected void writeStart(java.io.OutputStream os) throws java.io.IOExceptionHelper method to write the start of the Object.- Overrides:
writeStartin 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.IOExceptionHelper method to write the contents of the Object.- Overrides:
writeContentin 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.IOExceptionHelper method to write the end of the Object.- Overrides:
writeEndin classAbstractStructuredObject- Parameters:
os- The stream to write to- Throws:
java.io.IOException- an I/O exception if one occurred
-
toString
public java.lang.String toString()
- Overrides:
toStringin classAbstractNamedAFPObject
-
-