public abstract class BaseLifecycle
extends Object
implements Lifecycle
Base implementation class for interface Lifecycle. This class is supposed tp be extended by Lifecycle implementation classes and provides empty method bodies for all interface methods.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
afterProcessingClassNode(ProcessingContextInformation processingContextInformation, ClassNode classNode)No-op default hook invoked after class-level contract processing completes. |
|
public void |
afterProcessingConstructorNode(ProcessingContextInformation processingContextInformation, ClassNode classNode, MethodNode constructorNode)No-op default hook invoked after a constructor is processed. |
|
public void |
afterProcessingMethodNode(ProcessingContextInformation processingContextInformation, ClassNode classNode, MethodNode methodNode)No-op default hook invoked after a method is processed. |
|
public void |
beforeProcessingClassNode(ProcessingContextInformation processingContextInformation, ClassNode classNode)No-op default hook invoked before class-level contract processing begins. |
|
public void |
beforeProcessingConstructorNode(ProcessingContextInformation processingContextInformation, ClassNode classNode, MethodNode constructorNode)No-op default hook invoked before a constructor is processed. |
|
public void |
beforeProcessingMethodNode(ProcessingContextInformation processingContextInformation, ClassNode classNode, MethodNode methodNode)No-op default hook invoked before a method is processed. |
No-op default hook invoked after class-level contract processing completes.
processingContextInformation - the shared processing contextclassNode - the class that was processedNo-op default hook invoked after a constructor is processed.
processingContextInformation - the shared processing contextclassNode - the declaring classconstructorNode - the processed constructorNo-op default hook invoked after a method is processed.
processingContextInformation - the shared processing contextclassNode - the declaring classmethodNode - the processed methodNo-op default hook invoked before class-level contract processing begins.
processingContextInformation - the shared processing contextclassNode - the class about to be processedNo-op default hook invoked before a constructor is processed.
processingContextInformation - the shared processing contextclassNode - the declaring classconstructorNode - the constructor about to be processedNo-op default hook invoked before a method is processed.
processingContextInformation - the shared processing contextclassNode - the declaring classmethodNode - the method about to be processed