Package org.apache.fop.area
Interface AreaEventProducer
public interface AreaEventProducer
Event producer interface for events related to the area tree.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classProvider class for the event producer. -
Method Summary
Modifier and TypeMethodDescriptionvoidpageLoadError(Object source, String page, Exception e) A page could not be loaded/deserialized from a file.voidpageRenderingError(Object source, String page, Exception e) A page could not be rendered.voidpageSaveError(Object source, String page, Exception e) A page could not be saved/serialized to a file.voidunresolvedIDReference(Object source, String type, String id) An unresolved ID reference was encountered.voidunresolvedIDReferenceOnPage(Object source, String page, String id) An unresolved ID reference was encountered on a page.
-
Method Details
-
unresolvedIDReference
An unresolved ID reference was encountered.- Parameters:
source- the event sourcetype- the type of referenceid- the unresolved ID- Event severity level:
- WARN
-
unresolvedIDReferenceOnPage
An unresolved ID reference was encountered on a page.- Parameters:
source- the event sourcepage- the page the ID reference was found onid- the unresolved ID- Event severity level:
- WARN
-
pageLoadError
A page could not be loaded/deserialized from a file.- Parameters:
source- the event sourcepage- the page to be loadede- the original exception- Event severity level:
- ERROR
-
pageSaveError
A page could not be saved/serialized to a file.- Parameters:
source- the event sourcepage- the page to be serializede- the original exception- Event severity level:
- ERROR
-
pageRenderingError
A page could not be rendered.- Parameters:
source- the event sourcepage- the page to be serializede- the original exception- Event severity level:
- ERROR
-