src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java

Tue, 28 Dec 2010 15:54:52 -0800

author
ohair
date
Tue, 28 Dec 2010 15:54:52 -0800
changeset 798
4868a36f6fd8
parent 554
9d9f26857129
child 910
ebf7c13df6c0
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

     1 /*
     2  * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javadoc;
    29 import com.sun.javadoc.*;
    31 import com.sun.tools.javac.code.Attribute;
    32 import com.sun.tools.javac.code.Symbol.*;
    33 import com.sun.tools.javac.util.List;
    34 import com.sun.tools.javac.util.Pair;
    37 /**
    38  * Represents an annotation.
    39  * An annotation associates a value with each element of an annotation type.
    40  * Sure it ought to be called "Annotation", but that clashes with
    41  * java.lang.annotation.Annotation.
    42  *
    43  * @author Scott Seligman
    44  * @since 1.5
    45  */
    47 public class AnnotationDescImpl implements AnnotationDesc {
    49     private final DocEnv env;
    50     private final Attribute.Compound annotation;
    53     AnnotationDescImpl(DocEnv env, Attribute.Compound annotation) {
    54         this.env = env;
    55         this.annotation = annotation;
    56     }
    58     /**
    59      * Returns the annotation type of this annotation.
    60      */
    61     public AnnotationTypeDoc annotationType() {
    62         ClassSymbol atsym = (ClassSymbol)annotation.type.tsym;
    63         if (annotation.type.isErroneous()) {
    64             env.warning(null, "javadoc.class_not_found", annotation.type.toString());
    65             return new AnnotationTypeDocImpl(env, atsym);
    66         } else {
    67             return (AnnotationTypeDoc)env.getClassDoc(atsym);
    68         }
    69     }
    71     /**
    72      * Returns this annotation's elements and their values.
    73      * Only those explicitly present in the annotation are
    74      * included, not those assuming their default values.
    75      * Returns an empty array if there are none.
    76      */
    77     public ElementValuePair[] elementValues() {
    78         List<Pair<MethodSymbol,Attribute>> vals = annotation.values;
    79         ElementValuePair res[] = new ElementValuePair[vals.length()];
    80         int i = 0;
    81         for (Pair<MethodSymbol,Attribute> val : vals) {
    82             res[i++] = new ElementValuePairImpl(env, val.fst, val.snd);
    83         }
    84         return res;
    85     }
    87     /**
    88      * Returns a string representation of this annotation.
    89      * String is of one of the forms:
    90      *     @com.example.foo(name1=val1, name2=val2)
    91      *     @com.example.foo(val)
    92      *     @com.example.foo
    93      * Omit parens for marker annotations, and omit "value=" when allowed.
    94      */
    95     public String toString() {
    96         StringBuffer sb = new StringBuffer("@");
    97         sb.append(annotation.type.tsym);
    99         ElementValuePair vals[] = elementValues();
   100         if (vals.length > 0) {          // omit parens for marker annotation
   101             sb.append('(');
   102             boolean first = true;
   103             for (ElementValuePair val : vals) {
   104                 if (!first) {
   105                     sb.append(", ");
   106                 }
   107                 first = false;
   109                 String name = val.element().name();
   110                 if (vals.length == 1 && name.equals("value")) {
   111                     sb.append(val.value());
   112                 } else {
   113                     sb.append(val);
   114                 }
   115             }
   116             sb.append(')');
   117         }
   118         return sb.toString();
   119     }
   122     /**
   123      * Represents an association between an annotation type element
   124      * and one of its values.
   125      */
   126     public static class ElementValuePairImpl implements ElementValuePair {
   128         private final DocEnv env;
   129         private final MethodSymbol meth;
   130         private final Attribute value;
   132         ElementValuePairImpl(DocEnv env, MethodSymbol meth, Attribute value) {
   133             this.env = env;
   134             this.meth = meth;
   135             this.value = value;
   136         }
   138         /**
   139          * Returns the annotation type element.
   140          */
   141         public AnnotationTypeElementDoc element() {
   142             return env.getAnnotationTypeElementDoc(meth);
   143         }
   145         /**
   146          * Returns the value associated with the annotation type element.
   147          */
   148         public AnnotationValue value() {
   149             return new AnnotationValueImpl(env, value);
   150         }
   152         /**
   153          * Returns a string representation of this pair
   154          * of the form "name=value".
   155          */
   156         public String toString() {
   157             return meth.name + "=" + value();
   158         }
   159     }
   160 }

mercurial