diff options
author | acolyer <acolyer> | 2005-04-29 20:19:21 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-04-29 20:19:21 +0000 |
commit | a6291f59f0bd11e85b5018bb68d9d6e61ece43ec (patch) | |
tree | acfcaa135e42e8a7b1ab39848a61eae0c20769a3 /aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java | |
parent | 28a5bce27afc1b25460d6fe3273ae2e0272dd53e (diff) | |
download | aspectj-a6291f59f0bd11e85b5018bb68d9d6e61ece43ec.tar.gz aspectj-a6291f59f0bd11e85b5018bb68d9d6e61ece43ec.zip |
updated for DeclareError and DeclareWarning
Diffstat (limited to 'aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java')
-rw-r--r-- | aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java b/aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java new file mode 100644 index 000000000..ba3d11eb7 --- /dev/null +++ b/aspectj5rt/java5-src/org/aspectj/lang/annotation/DeclareWarning.java @@ -0,0 +1,31 @@ +/* ******************************************************************* + * Copyright (c) 2005 Contributors. + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution and is available at + * http://eclipse.org/legal/epl-v10.html + * + * Contributors: + * Adrian Colyer Initial implementation + * ******************************************************************/ +package org.aspectj.lang.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * @author colyer + * Annotation for declare warning... + * + * usage: + * @DeclareWarning("somePcut()") + * private static final String "a message"; + */ +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface DeclareWarning { + String value(); +} |