In Java programming language, org.aspectj.lang.ProceedingJoinPoint is a class that represents a join point, which is a specific point during the execution of a program where an aspect can be applied. It provides information about the current join point, such as the target object, arguments, and the ability to proceed with the execution. This class is typically used in Aspect-Oriented Programming (AOP) frameworks like AspectJ to intercept and manipulate the execution of methods or functions in a program.
Java ProceedingJoinPoint - 30 examples found. These are the top rated real world Java examples of org.aspectj.lang.ProceedingJoinPoint extracted from open source projects. You can rate examples to help us improve the quality of examples.