Package org.aspectj.lang
Interface JoinPoint
-
- All Known Subinterfaces:
ProceedingJoinPoint
public interface JoinPoint
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceJoinPoint.EnclosingStaticPartstatic interfaceJoinPoint.StaticPart
-
Field Summary
Fields Modifier and Type Field Description static StringADVICE_EXECUTIONstatic StringCONSTRUCTOR_CALLstatic StringCONSTRUCTOR_EXECUTIONstatic StringEXCEPTION_HANDLERstatic StringFIELD_GETstatic StringFIELD_SETstatic StringINITIALIZATIONstatic StringMETHOD_CALLstatic StringMETHOD_EXECUTIONstatic StringPREINITIALIZATIONstatic StringSTATICINITIALIZATIONstatic StringSYNCHRONIZATION_LOCKstatic StringSYNCHRONIZATION_UNLOCK
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object[]getArgs()StringgetKind()SignaturegetSignature()SourceLocationgetSourceLocation()JoinPoint.StaticPartgetStaticPart()ObjectgetTarget()ObjectgetThis()StringtoLongString()StringtoShortString()StringtoString()
-
-
-
Field Detail
-
METHOD_EXECUTION
static final String METHOD_EXECUTION
- See Also:
- Constant Field Values
-
METHOD_CALL
static final String METHOD_CALL
- See Also:
- Constant Field Values
-
CONSTRUCTOR_EXECUTION
static final String CONSTRUCTOR_EXECUTION
- See Also:
- Constant Field Values
-
CONSTRUCTOR_CALL
static final String CONSTRUCTOR_CALL
- See Also:
- Constant Field Values
-
FIELD_GET
static final String FIELD_GET
- See Also:
- Constant Field Values
-
FIELD_SET
static final String FIELD_SET
- See Also:
- Constant Field Values
-
STATICINITIALIZATION
static final String STATICINITIALIZATION
- See Also:
- Constant Field Values
-
PREINITIALIZATION
static final String PREINITIALIZATION
- See Also:
- Constant Field Values
-
INITIALIZATION
static final String INITIALIZATION
- See Also:
- Constant Field Values
-
EXCEPTION_HANDLER
static final String EXCEPTION_HANDLER
- See Also:
- Constant Field Values
-
SYNCHRONIZATION_LOCK
static final String SYNCHRONIZATION_LOCK
- See Also:
- Constant Field Values
-
SYNCHRONIZATION_UNLOCK
static final String SYNCHRONIZATION_UNLOCK
- See Also:
- Constant Field Values
-
ADVICE_EXECUTION
static final String ADVICE_EXECUTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
toShortString
String toShortString()
-
toLongString
String toLongString()
-
getThis
Object getThis()
-
getTarget
Object getTarget()
-
getArgs
Object[] getArgs()
-
getSignature
Signature getSignature()
-
getSourceLocation
SourceLocation getSourceLocation()
-
getKind
String getKind()
-
getStaticPart
JoinPoint.StaticPart getStaticPart()
-
-