Package org.apache.fop.render.pdf
Interface PDFEventProducer
-
- All Superinterfaces:
org.apache.fop.events.EventProducer
public interface PDFEventProducer extends org.apache.fop.events.EventProducerEvent producer interface for events generated by the PDF renderer.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPDFEventProducer.ProviderProvider class for the event producer.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidincorrectEncryptionLength(java.lang.Object source, int originalValue, int correctedValue)The encryption length must be a multiple of 8 between 40 and 128.voidnonFullyResolvedLinkTargets(java.lang.Object source, int count)Some link targets haven't been fully resolved.voidnonStandardStructureType(java.lang.Object source, java.lang.String type, java.lang.String fallback)Custom structure type is not standard as per the PDF reference.voidunknownLanguage(java.lang.Object source, java.lang.String location)The language of a piece of text is unknown.
-
-
-
Method Detail
-
nonFullyResolvedLinkTargets
void nonFullyResolvedLinkTargets(java.lang.Object source, int count)Some link targets haven't been fully resolved.- Parameters:
source- the event sourcecount- the number of unresolved links- Event severity level:
- WARN
-
nonStandardStructureType
void nonStandardStructureType(java.lang.Object source, java.lang.String type, java.lang.String fallback)Custom structure type is not standard as per the PDF reference.- Parameters:
source- the event sourcetype- custom structure typefallback- default structure type used as a fallback- Event severity level:
- WARN
-
incorrectEncryptionLength
void incorrectEncryptionLength(java.lang.Object source, int originalValue, int correctedValue)The encryption length must be a multiple of 8 between 40 and 128.- Parameters:
source- the event sourceoriginalValue- requested encryption lengthcorrectedValue- corrected encryption length- Event severity level:
- WARN
-
unknownLanguage
void unknownLanguage(java.lang.Object source, java.lang.String location)The language of a piece of text is unknown.- Parameters:
source- the event sourcelocation- location in the source FO file, if any
-
-