Interface AfterVisitor
-
- All Superinterfaces:
ContentHandler,SaxNgVisitor,Visitor
- All Known Subinterfaces:
ElementVisitor,ParameterizedVisitor
- All Known Implementing Classes:
BenchmarkVisitor,BibliographyVisitor,BridgeInterceptor,ConsumeSerializerVisitor,ContextObjectSerializerVisitor,DomModelCreator,ExceptionInterceptor,ExecutionEventInterceptor,GhostElementSerializerVisitor,InstrumentationInterceptor,NestedSmooksVisitor,SimpleSerializerVisitor,StaticProxyInterceptor,StreamResultWriterInterceptor,SystemConsumeSerializerVisitor,TerminateVisitor,TextConsumerInterceptor
public interface AfterVisitor extends SaxNgVisitor
Applies an operation immediately after theElement's end tag.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisitAfter(Element element, ExecutionContext executionContext)Visits the end of anElement.
-
-
-
Method Detail
-
visitAfter
void visitAfter(Element element, ExecutionContext executionContext)
Visits the end of anElement.- 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
-
-