org.aspectj.weaver.tools

Interface PointcutParameter

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

Object
getBinding()
At a matched join point, the parameter binding.
String
getName()
The name of this parameter
Class
getType()
The type of the parameter

Method Details

getBinding

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

getName

public String getName()
The name of this parameter

getType

public Class getType()
The type of the parameter