View Javadoc

1   /***************************************************************************************
2    * Copyright (c) Jonas Bonér, Alexandre Vasseur. All rights reserved.                 *
3    * http://aspectwerkz.codehaus.org                                                    *
4    * ---------------------------------------------------------------------------------- *
5    * The software in this package is published under the terms of the LGPL license      *
6    * a copy of which has been included with this distribution in the license.txt file.  *
7    **************************************************************************************/
8   package org.codehaus.aspectwerkz.annotation;
9   
10  /***
11   * Defines doclet nicknames for Java 1.3/1.4 annotations in JavaDoc and annotation implementations
12   *
13   * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
14   */
15  public abstract class AnnotationConstants {
16  
17      private static final String PACKAGE = "org.codehaus.aspectwerkz.annotation.";
18  
19      static final String ASPECT_DOCLET = "Aspect";
20      static final String ASPECT = PACKAGE + ASPECT_DOCLET;
21  
22      static final String AROUND_DOCLET = "Around";
23      static final String AROUND = PACKAGE + AROUND_DOCLET;
24  
25      static final String BEFORE_DOCLET = "Before";
26      static final String BEFORE = PACKAGE + BEFORE_DOCLET;
27  
28      static final String AFTER_DOCLET = "After";
29      static final String AFTER = PACKAGE + AFTER_DOCLET;
30  
31      static final String AFTER_FINALLY_DOCLET = "AfterFinally";
32      static final String AFTER_FINALLY = PACKAGE + AFTER_FINALLY_DOCLET;
33  
34      static final String AFTER_RETURNING_DOCLET = "AfterReturning";
35      static final String AFTER_RETURNING = PACKAGE + AFTER_RETURNING_DOCLET;
36  
37      static final String AFTER_THROWING_DOCLET = "AfterThrowing";
38      static final String AFTER_THROWING = PACKAGE + AFTER_THROWING_DOCLET;
39  
40      static final String EXPRESSION_DOCLET = "Expression";
41      static final String EXPRESSION = PACKAGE + EXPRESSION_DOCLET;
42  
43      static final String INTRODUCE_DOCLET = "Introduce";
44      static final String INTRODUCE = PACKAGE + INTRODUCE_DOCLET;
45  
46      static final String MIXIN_DOCLET = "Mixin";
47      static final String MIXIN = PACKAGE + MIXIN_DOCLET;
48  
49  }