org.aspectj.weaver.tools
Interface PointcutParameter
public interface PointcutParameter
- colyer
Represents a parameter in a pointcut expression.
For example pointcut pc(String s) : .....; has a PointcutParameter of
name "s" and type String.
Object | getBinding() - At a matched join point, the parameter binding.
|
String | getName() - The name of this parameter
|
Class | getType() - The type of the parameter
|
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