10
|
1 |
/*
|
14258
|
2 |
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
10
|
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
|
5520
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
10
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5520
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
10
|
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 |
*
|
5520
|
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.
|
10
|
24 |
*/
|
|
25 |
|
|
26 |
package com.sun.tools.javadoc;
|
|
27 |
|
|
28 |
import com.sun.javadoc.*;
|
|
29 |
|
|
30 |
import com.sun.tools.javac.code.Attribute;
|
|
31 |
import com.sun.tools.javac.code.Symbol.VarSymbol;
|
|
32 |
|
|
33 |
/**
|
|
34 |
* ParameterImpl information.
|
|
35 |
* This includes a parameter type and parameter name.
|
|
36 |
*
|
|
37 |
* @author Kaiyang Liu (original)
|
|
38 |
* @author Robert Field (rewrite)
|
|
39 |
* @author Scott Seligman (generics, annotations)
|
|
40 |
*/
|
|
41 |
class ParameterImpl implements Parameter {
|
|
42 |
|
|
43 |
private final DocEnv env;
|
|
44 |
private final VarSymbol sym;
|
|
45 |
private final com.sun.javadoc.Type type;
|
|
46 |
|
|
47 |
/**
|
|
48 |
* Constructor of parameter info class.
|
|
49 |
*/
|
|
50 |
ParameterImpl(DocEnv env, VarSymbol sym) {
|
|
51 |
this.env = env;
|
|
52 |
this.sym = sym;
|
|
53 |
this.type = TypeMaker.getType(env, sym.type, false);
|
|
54 |
}
|
|
55 |
|
|
56 |
/**
|
|
57 |
* Get the type of this parameter.
|
|
58 |
*/
|
|
59 |
public com.sun.javadoc.Type type() {
|
|
60 |
return type;
|
|
61 |
}
|
|
62 |
|
|
63 |
/**
|
|
64 |
* Get local name of this parameter.
|
|
65 |
* For example if parameter is the short 'index', returns "index".
|
|
66 |
*/
|
|
67 |
public String name() {
|
|
68 |
return sym.toString();
|
|
69 |
}
|
|
70 |
|
|
71 |
/**
|
|
72 |
* Get type name of this parameter.
|
|
73 |
* For example if parameter is the short 'index', returns "short".
|
|
74 |
*/
|
|
75 |
public String typeName() {
|
|
76 |
return (type instanceof ClassDoc || type instanceof TypeVariable)
|
|
77 |
? type.typeName() // omit formal type params or bounds
|
|
78 |
: type.toString();
|
|
79 |
}
|
|
80 |
|
|
81 |
/**
|
|
82 |
* Returns a string representation of the parameter.
|
|
83 |
* <p>
|
|
84 |
* For example if parameter is the short 'index', returns "short index".
|
|
85 |
*
|
|
86 |
* @return type name and parameter name of this parameter.
|
|
87 |
*/
|
|
88 |
public String toString() {
|
|
89 |
return typeName() + " " + sym;
|
|
90 |
}
|
|
91 |
|
|
92 |
/**
|
|
93 |
* Get the annotations of this parameter.
|
|
94 |
* Return an empty array if there are none.
|
|
95 |
*/
|
|
96 |
public AnnotationDesc[] annotations() {
|
|
97 |
AnnotationDesc res[] = new AnnotationDesc[sym.getAnnotationMirrors().length()];
|
|
98 |
int i = 0;
|
|
99 |
for (Attribute.Compound a : sym.getAnnotationMirrors()) {
|
|
100 |
res[i++] = new AnnotationDescImpl(env, a);
|
|
101 |
}
|
|
102 |
return res;
|
|
103 |
}
|
|
104 |
}
|