summaryrefslogtreecommitdiffstats
path: root/asm
diff options
context:
space:
mode:
authormkersten <mkersten>2003-02-26 10:11:28 +0000
committermkersten <mkersten>2003-02-26 10:11:28 +0000
commit9a67e6290d6e330418f9b0ccaa94ec32d9f0aa49 (patch)
tree66b43650b4cf851649bb829c36958c91879f2c2e /asm
parent5e5a2dd20e2c8038dbaf14583710c76e21988659 (diff)
downloadaspectj-9a67e6290d6e330418f9b0ccaa94ec32d9f0aa49.tar.gz
aspectj-9a67e6290d6e330418f9b0ccaa94ec32d9f0aa49.zip
The mappings for advice are now correct, and associations have corresponding kinds (e.g. "affects exception handlers").
Diffstat (limited to 'asm')
-rw-r--r--asm/src/org/aspectj/asm/AdviceAssociation.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/asm/src/org/aspectj/asm/AdviceAssociation.java b/asm/src/org/aspectj/asm/AdviceAssociation.java
index c1914630d..842690ea2 100644
--- a/asm/src/org/aspectj/asm/AdviceAssociation.java
+++ b/asm/src/org/aspectj/asm/AdviceAssociation.java
@@ -23,14 +23,14 @@ import org.aspectj.asm.*;
public class AdviceAssociation implements Association {
public static final String NAME = "Advice";
- public static final Relation METHOD_RELATION = new Relation("affects methods", "method affected by", NAME, true, false);
- public static final Relation METHOD_CALL_SITE_RELATION = new Relation("affects method call sites", "method call site affected by", NAME, true, false);
- public static final Relation CONSTRUCTOR_RELATION = new Relation("affects constructors", "constructor affected by", NAME, true, false);
- public static final Relation CONSTRUCTOR_CALL_SITE_RELATION = new Relation("affects constructions", "construction affected by", NAME, true, false);
- public static final Relation HANDLER_RELATION = new Relation("affects handlers", "handler affected by", NAME, true, false);
- public static final Relation INITIALIZER_RELATION = new Relation("affects initializers", "initializer affected by", NAME, true, false);
- public static final Relation FIELD_ACCESS_RELATION = new Relation("affects field access", "field access affected by", NAME, true, false);
- public static final Relation INTRODUCTION_RELATION = new Relation("affects introduction", "introduction affected by", NAME, true, false);
+ public static final Relation METHOD_RELATION = new Relation("advises methods", "method advised by", NAME, true, false);
+ public static final Relation METHOD_CALL_SITE_RELATION = new Relation("advises method call sites", "method call site advised by", NAME, true, false);
+ public static final Relation CONSTRUCTOR_RELATION = new Relation("advises constructors", "constructors advised by", NAME, true, false);
+ public static final Relation CONSTRUCTOR_CALL_SITE_RELATION = new Relation("advises constructions", "construction advised by", NAME, true, false);
+ public static final Relation HANDLER_RELATION = new Relation("advises exception handlers", "exception handler advised by", NAME, true, false);
+ public static final Relation INITIALIZER_RELATION = new Relation("advises initializers", "initializers advised by", NAME, true, false);
+ public static final Relation FIELD_ACCESS_RELATION = new Relation("advises field access", "field access advised by", NAME, true, false);
+ public static final Relation INTRODUCTION_RELATION = new Relation("advises introduction", "introduction advised by", NAME, true, false);
private List relations = new ArrayList();