aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/src/main/java/org/aspectj/lang/annotation/Around.java
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/main/java/org/aspectj/lang/annotation/Around.java')
-rw-r--r--runtime/src/main/java/org/aspectj/lang/annotation/Around.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/src/main/java/org/aspectj/lang/annotation/Around.java b/runtime/src/main/java/org/aspectj/lang/annotation/Around.java
index 253e865f6..36510c70f 100644
--- a/runtime/src/main/java/org/aspectj/lang/annotation/Around.java
+++ b/runtime/src/main/java/org/aspectj/lang/annotation/Around.java
@@ -19,14 +19,14 @@ import java.lang.annotation.RetentionPolicy;
/**
* Around advice
*
- * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
+ * @author Alexandre Vasseur
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Around {
/**
- * The pointcut expression where to bind the advice
+ * @return the pointcut expression where to bind the advice
*/
String value();
@@ -36,6 +36,7 @@ public @interface Around {
* Under these circumstances only, it is necessary to provide the arg names in
* the annotation - these MUST duplicate the names used in the annotated method.
* Format is a simple comma-separated list.
+ * @return the argument names (should match the names on the annotated method)
*/
String argNames() default "";