Package org.aspectj.lang.reflect
Interface DeclareErrorOrWarning
-
public interface DeclareErrorOrWarningAspectJ runtime representation of a declare error or declare warning member in an aspect.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AjTypegetDeclaringType()The type that declared this declare warning or declare error member.java.lang.StringgetMessage()The message associated with the declare warning / declare errorPointcutExpressiongetPointcutExpression()The pointcut expression associated with the warning or errorbooleanisError()True if this is a declare error member, false if it is declare warning
-
-
-
Method Detail
-
getDeclaringType
AjType getDeclaringType()
The type that declared this declare warning or declare error member.
-
getPointcutExpression
PointcutExpression getPointcutExpression()
The pointcut expression associated with the warning or error
-
getMessage
java.lang.String getMessage()
The message associated with the declare warning / declare error
-
isError
boolean isError()
True if this is a declare error member, false if it is declare warning
-
-