Interface BeforeVisitor
-
- All Superinterfaces:
ContentHandler,SaxNgVisitor,Visitor
- All Known Subinterfaces:
ElementVisitor,ParameterizedVisitor
- All Known Implementing Classes:
AbstractOutputStreamResource,BenchmarkVisitor,BridgeInterceptor,ConsumeSerializerVisitor,ContextObjectSerializerVisitor,CounterVisitor,DomModelCreator,ElementPositionCounter,ExceptionInterceptor,ExecutionEventInterceptor,GhostElementSerializerVisitor,InstrumentationInterceptor,NestedSmooksVisitor,SimpleSerializerVisitor,StaticProxyInterceptor,StreamSinkWriterInterceptor,SystemConsumeSerializerVisitor,TerminateVisitor,TextConsumerInterceptor,TextSerializerVisitor
public interface BeforeVisitor extends SaxNgVisitor
Applies an operation immediately after theElement's start tag.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisitBefore(Element element, ExecutionContext executionContext)Visits the beginning of anElement.
-
-
-
Method Detail
-
visitBefore
void visitBefore(Element element, ExecutionContext executionContext)
Visits the beginning of anElement.- Parameters:
element- theElementrepresenting the beginning of the fragment. TheElement's ancestors are traversable unless the global configuration parametermaintain.element.stackis set to false. TheElement's child nodes are not traversable.executionContext- the currentExecutionContext
-
-