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 void
visitAfter(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
- 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
-
-