跳过导航链接

程序包 org.aspectj.lang.reflect

Contains interfaces that extend Signature to provide additional information about each possible join point signature.

请参阅: 说明

程序包org.aspectj.lang.reflect的说明

Contains interfaces that extend Signature to provide additional information about each possible join point signature. This additional information can be accessed by casting a Signature object to the appropriate type, i.e.

  before(): call(* *(..)) {
      MethodSignature sig = (MethodSignature)thisJoinPoint.getSignature();
      ...
  }

This package also contains SourceLocation that provides information about the location in source code that corresponds to a particular join point.

跳过导航链接