Interface PointcutParameter

All Known Implementing Classes:
PointcutParameterImpl

public interface PointcutParameter
Author:
colyer Represents a parameter in a pointcut expression. For example pointcut pc(String s) : .....; has a PointcutParameter of name "s" and type String.
  • Method Summary

    Modifier and Type
    Method
    Description
    At a matched join point, the parameter binding.
    The name of this parameter
    The type of the parameter
  • Method Details

    • getName

      String getName()
      The name of this parameter
    • getType

      Class getType()
      The type of the parameter
    • getBinding

      Object getBinding()
      At a matched join point, the parameter binding.