Package org.apache.fop.area
Class OffDocumentExtensionAttachment
- java.lang.Object
-
- org.apache.fop.area.OffDocumentExtensionAttachment
-
- All Implemented Interfaces:
OffDocumentItem
public class OffDocumentExtensionAttachment extends java.lang.Object implements OffDocumentItem
This class wraps ExtensionAttachments which cannot be transported inside the area tree but need to be handled in the AreaTreeHandler. These attachments are schedules for processing before the first page-sequence, i.e. at the start of the document.
-
-
Field Summary
-
Fields inherited from interface org.apache.fop.area.OffDocumentItem
AFTER_PAGE, END_OF_DOC, IMMEDIATELY
-
-
Constructor Summary
Constructors Constructor Description OffDocumentExtensionAttachment(ExtensionAttachment attachment)Main constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExtensionAttachmentgetAttachment()java.lang.StringgetName()Return a human-readable name for this ODI (for error messages, etc.)intgetWhenToProcess()Get an indicator of when this item should be processed
-
-
-
Constructor Detail
-
OffDocumentExtensionAttachment
public OffDocumentExtensionAttachment(ExtensionAttachment attachment)
Main constructor- Parameters:
attachment- the extension attachment to wrap.
-
-
Method Detail
-
getAttachment
public ExtensionAttachment getAttachment()
- Returns:
- the extension attachment.
-
getWhenToProcess
public int getWhenToProcess()
Get an indicator of when this item should be processed- Specified by:
getWhenToProcessin interfaceOffDocumentItem- Returns:
- int constant (IMMEDIATELY, AFTER_PAGE, END_OF_DOC)
-
getName
public java.lang.String getName()
Return a human-readable name for this ODI (for error messages, etc.)- Specified by:
getNamein interfaceOffDocumentItem- Returns:
- String name of ODI
-
-