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 voidpostConstruct()voidvisitAfter(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:AfterVisitorVisits the end of anElement.- Specified by:
visitAfterin interfaceAfterVisitor- Parameters:
element- theElementrepresenting the end of the fragment. TheElement's ancestors are traversable unless the global configuration parametermaintain.element.stackis set to false. TheElement's child nodes are traversable if one of the following conditions are met:max.node.depthglobal config parameter is set to 0 or greater than 1, or- this
AfterVisitorimplementsParameterizedVisitor.getMaxNodeDepth()which returns an integer greater than 1
executionContext- the currentExecutionContext
-
-