diff options
author | mkersten <mkersten> | 2005-04-21 17:00:18 +0000 |
---|---|---|
committer | mkersten <mkersten> | 2005-04-21 17:00:18 +0000 |
commit | 7a613809e63e1a3320a7598e8d7381e70c717adc (patch) | |
tree | cdfefbf184c8888fc0cab28c9e4c11cec2bee449 /asm | |
parent | 7a639d019a9b04b3eb7af97a7a2975cbbf72e0cf (diff) | |
download | aspectj-7a613809e63e1a3320a7598e8d7381e70c717adc.tar.gz aspectj-7a613809e63e1a3320a7598e8d7381e70c717adc.zip |
Fixed bug#91912 added softens / softened by relationship to ASM
Diffstat (limited to 'asm')
-rw-r--r-- | asm/src/org/aspectj/asm/IRelationship.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/asm/src/org/aspectj/asm/IRelationship.java b/asm/src/org/aspectj/asm/IRelationship.java index 4a33d4fb0..41c25ba74 100644 --- a/asm/src/org/aspectj/asm/IRelationship.java +++ b/asm/src/org/aspectj/asm/IRelationship.java @@ -38,8 +38,6 @@ public interface IRelationship extends Serializable { */ public static class Kind implements Serializable { - public static final Kind DECLARE_WARNING = new Kind("declare warning"); - public static final Kind DECLARE_ERROR = new Kind("declare error"); public static final Kind ADVICE_AROUND = new Kind("around advice"); public static final Kind ADVICE_AFTERRETURNING = new Kind("after returning advice"); public static final Kind ADVICE_AFTERTHROWING = new Kind("after throwing advice"); @@ -47,11 +45,14 @@ public interface IRelationship extends Serializable { public static final Kind ADVICE_BEFORE = new Kind("before advice"); public static final Kind ADVICE = new Kind("advice"); public static final Kind DECLARE = new Kind("declare"); - public static final Kind DECLARE_INTER_TYPE = new Kind("inter-type declaration"); - public static final Kind USES_POINTCUT = new Kind("uses pointcut"); + public static final Kind DECLARE_WARNING = new Kind("declare warning"); + public static final Kind DECLARE_ERROR = new Kind("declare error"); + public static final Kind DECLARE_SOFT = new Kind("declare soft"); + public static final Kind DECLARE_INTER_TYPE = new Kind("inter-type declaration"); + public static final Kind USES_POINTCUT = new Kind("uses pointcut"); public static final Kind[] ALL = { - DECLARE_WARNING, DECLARE_ERROR, + DECLARE_WARNING, DECLARE_ERROR, DECLARE_SOFT, ADVICE_AROUND,ADVICE_AFTERRETURNING,ADVICE_AFTERTHROWING,ADVICE_AFTER,ADVICE_BEFORE, ADVICE, DECLARE, DECLARE_INTER_TYPE, USES_POINTCUT }; |