| java.lang.Object org.codehaus.aspectwerkz.definition.DeploymentScope
DeploymentScope | final public class DeploymentScope (Code) | | Represents a deployment scope pointcut expression, that is used by the system to "prepare" the
join points that are picked out by this pointcut. Needed to allow hot-deployment of aspects
in a safe and predictable way.
Can not and should not be created by the user only given to him from the framework.
author: Jonas BonŽr |
DeploymentScope | DeploymentScope(String name, String expression)(Code) | | Creates a new pointcut, should only be created by the system.
Parameters: name - Parameters: expression - |
getExpression | public String getExpression()(Code) | | Returns the expression as a string.
|
getName | public String getName()(Code) | | Returns the name of the pointcut.
|
hashCode | public int hashCode()(Code) | | |
newExpressionInfo | public ExpressionInfo newExpressionInfo(ExpressionInfo expression)(Code) | | Merges the scope expression with a new expression. Uses '&&' to merge them.
Parameters: expression - |
|
|