Schnittstelle PointcutParameter

Alle bekannten Implementierungsklassen:
PointcutParameterImpl

public interface PointcutParameter
Autor:
colyer Represents a parameter in a pointcut expression. For example pointcut pc(String s) : .....; has a PointcutParameter of name "s" and type String.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    At a matched join point, the parameter binding.
    The name of this parameter
    The type of the parameter
  • Methodendetails

    • 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.