Uses of Class
org.apache.fop.fo.FOEventHandler
-
Packages that use FOEventHandler Package Description org.apache.fop.accessibility.fo org.apache.fop.apps Application classes used for running FOP embedded in other applications.org.apache.fop.area FOP's area tree.org.apache.fop.fo Classes, constants and basic infrastructure for the FO tree.org.apache.fop.fo.pagination All the pagination and declaration formatting objects.org.apache.fop.render Generic renderer interface.org.apache.fop.render.mif MIF Output Supportorg.apache.fop.render.rtf RTF (Rich Text Format) Output Support -
-
Uses of FOEventHandler in org.apache.fop.accessibility.fo
Subclasses of FOEventHandler in org.apache.fop.accessibility.fo Modifier and Type Class Description class
FO2StructureTreeConverter
Allows to create the structure tree of an FO document, by converting FO events into appropriate structure tree events.(package private) class
StructureTreeEventTrigger
A bridge betweenFOEventHandler
andStructureTreeEventHandler
.Fields in org.apache.fop.accessibility.fo declared as FOEventHandler Modifier and Type Field Description protected FOEventHandler
FO2StructureTreeConverter. converter
The top of theFO2StructureTreeConverter.converters
stack.private FOEventHandler
FO2StructureTreeConverter.State. converter
protected FOEventHandler
Event. eventHandler
private FOEventHandler
FO2StructureTreeConverter. eventSwallower
The descendants of some elements like fo:leader must be ignored.Fields in org.apache.fop.accessibility.fo with type parameters of type FOEventHandler Modifier and Type Field Description private java.util.Stack<FOEventHandler>
FO2StructureTreeConverter. converters
private java.util.Stack<FOEventHandler>
FO2StructureTreeConverter.State. converters
Constructors in org.apache.fop.accessibility.fo with parameters of type FOEventHandler Constructor Description FO2StructureTreeConverter(StructureTreeEventHandler structureTreeEventHandler, FOEventHandler delegate)
Creates a new instance. -
Uses of FOEventHandler in org.apache.fop.apps
Fields in org.apache.fop.apps declared as FOEventHandler Modifier and Type Field Description private FOEventHandler
FOUserAgent. foEventHandlerOverride
Methods in org.apache.fop.apps that return FOEventHandler Modifier and Type Method Description FOEventHandler
FOUserAgent. getFOEventHandlerOverride()
Returns the overriding FOEventHandler instance, if any.Methods in org.apache.fop.apps with parameters of type FOEventHandler Modifier and Type Method Description void
FOUserAgent. setFOEventHandlerOverride(FOEventHandler handler)
Sets an explicit FOEventHandler instance which overrides the one defined by the render type setting. -
Uses of FOEventHandler in org.apache.fop.area
Subclasses of FOEventHandler in org.apache.fop.area Modifier and Type Class Description class
AreaTreeHandler
Area tree handler for formatting objects. -
Uses of FOEventHandler in org.apache.fop.fo
Subclasses of FOEventHandler in org.apache.fop.fo Modifier and Type Class Description class
DelegatingFOEventHandler
This class delegates all FO events to another FOEventHandler instance.Fields in org.apache.fop.fo declared as FOEventHandler Modifier and Type Field Description private FOEventHandler
DelegatingFOEventHandler. delegate
private FOEventHandler
FOTreeBuilder. foEventHandler
The object that handles formatting and rendering to a streamMethods in org.apache.fop.fo that return FOEventHandler Modifier and Type Method Description FOEventHandler
FOTreeBuilder. getEventHandler()
Provides access to the underlyingFOEventHandler
object.FOEventHandler
FONode. getFOEventHandler()
Recursively goes up the FOTree hierarchy until thefo:root
is found, which returns the parentFOEventHandler
.Methods in org.apache.fop.fo with parameters of type FOEventHandler Modifier and Type Method Description protected PropertyList
FObj. createPropertyList(PropertyList parent, FOEventHandler foEventHandler)
Create a default property list for this element.protected PropertyList
FONode. createPropertyList(PropertyList pList, FOEventHandler foEventHandler)
Create a property list for this node.Constructors in org.apache.fop.fo with parameters of type FOEventHandler Constructor Description DelegatingFOEventHandler(FOEventHandler delegate)
Creates a new instance that delegates events to the given object. -
Uses of FOEventHandler in org.apache.fop.fo.pagination
Fields in org.apache.fop.fo.pagination declared as FOEventHandler Modifier and Type Field Description private FOEventHandler
Root. foEventHandler
FOEventHandler object for this FO TreeMethods in org.apache.fop.fo.pagination that return FOEventHandler Modifier and Type Method Description FOEventHandler
Root. getFOEventHandler()
This method overrides the FONode version.Methods in org.apache.fop.fo.pagination with parameters of type FOEventHandler Modifier and Type Method Description void
Root. setFOEventHandler(FOEventHandler foEventHandler)
Sets the FOEventHandler object that this Root is attached to -
Uses of FOEventHandler in org.apache.fop.render
Methods in org.apache.fop.render that return FOEventHandler Modifier and Type Method Description FOEventHandler
RendererFactory. createFOEventHandler(FOUserAgent userAgent, java.lang.String outputFormat, java.io.OutputStream out)
Creates FOEventHandler instances based on the desired output.abstract FOEventHandler
AbstractFOEventHandlerMaker. makeFOEventHandler(FOUserAgent ua, java.io.OutputStream out)
Instantiates a new FOEventHandler. -
Uses of FOEventHandler in org.apache.fop.render.mif
Subclasses of FOEventHandler in org.apache.fop.render.mif Modifier and Type Class Description class
MIFHandler
The MIF Handler.Methods in org.apache.fop.render.mif that return FOEventHandler Modifier and Type Method Description FOEventHandler
MIFFOEventHandlerMaker. makeFOEventHandler(FOUserAgent ua, java.io.OutputStream out)
Instantiates a new FOEventHandler. -
Uses of FOEventHandler in org.apache.fop.render.rtf
Subclasses of FOEventHandler in org.apache.fop.render.rtf Modifier and Type Class Description class
RTFHandler
RTF Handler: generates RTF output using the structure events from the FO Tree sent to this structure handler.Methods in org.apache.fop.render.rtf that return FOEventHandler Modifier and Type Method Description FOEventHandler
RTFFOEventHandlerMaker. makeFOEventHandler(FOUserAgent ua, java.io.OutputStream out)
Instantiates a new FOEventHandler.
-