Package org.smooks.benchmark
Class BibliographyVisitor
- java.lang.Object
-
- org.smooks.benchmark.BibliographyVisitor
-
- All Implemented Interfaces:
ContentHandler
,AfterVisitor
,SaxNgVisitor
,Visitor
public class BibliographyVisitor extends Object implements AfterVisitor
-
-
Constructor Summary
Constructors Constructor Description BibliographyVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
postConstruct()
void
visitAfter(Element element, ExecutionContext executionContext)
Visits the end of anElement
.
-
-
-
Method Detail
-
postConstruct
@PostConstruct public void postConstruct() throws org.jaxen.JaxenException
- Throws:
org.jaxen.JaxenException
-
visitAfter
public void visitAfter(Element element, ExecutionContext executionContext)
Description copied from interface:AfterVisitor
Visits the end of anElement
.- Specified by:
visitAfter
in interfaceAfterVisitor
- Parameters:
element
- theElement
representing the end of the fragment. TheElement
's ancestors are traversable unless the global configuration parametermaintain.element.stack
is set to false. TheElement
's child nodes are traversable if one of the following conditions are met:max.node.depth
global config parameter is set to 0 or greater than 1, or- this
AfterVisitor
implementsParameterizedVisitor.getMaxNodeDepth()
which returns an integer greater than 1
executionContext
- the currentExecutionContext
-
-