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

Mon, 25 Mar 2013 16:55:14 -0700

author
mfang
date
Mon, 25 Mar 2013 16:55:14 -0700
changeset 1658
fdf30b225e1c
parent 1521
71f35e4b93a5
child 1644
40adaf938847
permissions
-rw-r--r--

8010521: jdk8 l10n resource file translation update 2
Reviewed-by: naoto, yhuang

duke@1 1 /*
jjg@1521 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.javadoc;
duke@1 27
jjg@197 28 import java.lang.reflect.Modifier;
jjg@197 29 import java.text.CollationKey;
jjg@197 30
jjg@1521 31 import javax.lang.model.type.TypeKind;
jjg@1521 32
duke@1 33 import com.sun.javadoc.*;
duke@1 34
jjg@1443 35 import com.sun.source.util.TreePath;
jjg@1521 36 import com.sun.tools.javac.code.Attribute;
jjg@197 37 import com.sun.tools.javac.code.Flags;
jjg@1521 38 import com.sun.tools.javac.code.Attribute.Compound;
jjg@197 39 import com.sun.tools.javac.code.Symbol.*;
jjg@197 40 import com.sun.tools.javac.code.Type;
duke@1 41 import com.sun.tools.javac.util.List;
duke@1 42 import com.sun.tools.javac.util.ListBuffer;
duke@1 43
duke@1 44 /**
duke@1 45 * Represents a method or constructor of a java class.
duke@1 46 *
jjg@1359 47 * <p><b>This is NOT part of any supported API.
jjg@1359 48 * If you write code that depends on this, you do so at your own risk.
jjg@1359 49 * This code and its internal interfaces are subject to change or
jjg@1359 50 * deletion without notice.</b>
jjg@1359 51 *
duke@1 52 * @since 1.2
duke@1 53 * @author Robert Field
duke@1 54 * @author Neal Gafter (rewrite)
duke@1 55 * @author Scott Seligman (generics, annotations)
duke@1 56 */
duke@1 57
duke@1 58 public abstract class ExecutableMemberDocImpl
duke@1 59 extends MemberDocImpl implements ExecutableMemberDoc {
duke@1 60
duke@1 61 protected final MethodSymbol sym;
duke@1 62
duke@1 63 /**
duke@1 64 * Constructor.
duke@1 65 */
jjg@1443 66 public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym, TreePath treePath) {
jjg@1443 67 super(env, sym, treePath);
duke@1 68 this.sym = sym;
duke@1 69 }
duke@1 70
duke@1 71 /**
duke@1 72 * Constructor.
duke@1 73 */
duke@1 74 public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym) {
jjg@1443 75 this(env, sym, null);
duke@1 76 }
duke@1 77
duke@1 78 /**
duke@1 79 * Returns the flags in terms of javac's flags
duke@1 80 */
duke@1 81 protected long getFlags() {
duke@1 82 return sym.flags();
duke@1 83 }
duke@1 84
duke@1 85 /**
duke@1 86 * Identify the containing class
duke@1 87 */
duke@1 88 protected ClassSymbol getContainingClass() {
duke@1 89 return sym.enclClass();
duke@1 90 }
duke@1 91
duke@1 92 /**
duke@1 93 * Return true if this method is native
duke@1 94 */
duke@1 95 public boolean isNative() {
duke@1 96 return Modifier.isNative(getModifiers());
duke@1 97 }
duke@1 98
duke@1 99 /**
duke@1 100 * Return true if this method is synchronized
duke@1 101 */
duke@1 102 public boolean isSynchronized() {
duke@1 103 return Modifier.isSynchronized(getModifiers());
duke@1 104 }
duke@1 105
duke@1 106 /**
duke@1 107 * Return true if this method was declared to take a variable number
duke@1 108 * of arguments.
duke@1 109 */
duke@1 110 public boolean isVarArgs() {
duke@1 111 return ((sym.flags() & Flags.VARARGS) != 0
duke@1 112 && !env.legacyDoclet);
duke@1 113 }
duke@1 114
duke@1 115 /**
duke@1 116 * Returns true if this field was synthesized by the compiler.
duke@1 117 */
duke@1 118 public boolean isSynthetic() {
duke@1 119 return ((sym.flags() & Flags.SYNTHETIC) != 0);
duke@1 120 }
duke@1 121
duke@1 122 public boolean isIncluded() {
duke@1 123 return containingClass().isIncluded() && env.shouldDocument(sym);
duke@1 124 }
duke@1 125
duke@1 126 /**
duke@1 127 * Return the throws tags in this method.
duke@1 128 *
duke@1 129 * @return an array of ThrowTagImpl containing all {@code @exception}
duke@1 130 * and {@code @throws} tags.
duke@1 131 */
duke@1 132 public ThrowsTag[] throwsTags() {
duke@1 133 return comment().throwsTags();
duke@1 134 }
duke@1 135
duke@1 136 /**
duke@1 137 * Return the param tags in this method, excluding the type
duke@1 138 * parameter tags.
duke@1 139 *
duke@1 140 * @return an array of ParamTagImpl containing all {@code @param} tags.
duke@1 141 */
duke@1 142 public ParamTag[] paramTags() {
duke@1 143 return comment().paramTags();
duke@1 144 }
duke@1 145
duke@1 146 /**
duke@1 147 * Return the type parameter tags in this method.
duke@1 148 */
duke@1 149 public ParamTag[] typeParamTags() {
duke@1 150 return env.legacyDoclet
duke@1 151 ? new ParamTag[0]
duke@1 152 : comment().typeParamTags();
duke@1 153 }
duke@1 154
duke@1 155 /**
duke@1 156 * Return exceptions this method or constructor throws.
duke@1 157 *
duke@1 158 * @return an array of ClassDoc[] representing the exceptions
duke@1 159 * thrown by this method.
duke@1 160 */
duke@1 161 public ClassDoc[] thrownExceptions() {
duke@1 162 ListBuffer<ClassDocImpl> l = new ListBuffer<ClassDocImpl>();
duke@1 163 for (Type ex : sym.type.getThrownTypes()) {
duke@1 164 ex = env.types.erasure(ex);
duke@1 165 //### Will these casts succeed in the face of static semantic
duke@1 166 //### errors in the documented code?
duke@1 167 ClassDocImpl cdi = env.getClassDoc((ClassSymbol)ex.tsym);
duke@1 168 if (cdi != null) l.append(cdi);
duke@1 169 }
duke@1 170 return l.toArray(new ClassDocImpl[l.length()]);
duke@1 171 }
duke@1 172
duke@1 173 /**
duke@1 174 * Return exceptions this method or constructor throws.
duke@1 175 * Each array element is either a <code>ClassDoc</code> or a
duke@1 176 * <code>TypeVariable</code>.
duke@1 177 */
duke@1 178 public com.sun.javadoc.Type[] thrownExceptionTypes() {
duke@1 179 return TypeMaker.getTypes(env, sym.type.getThrownTypes());
duke@1 180 }
duke@1 181
duke@1 182 /**
duke@1 183 * Get argument information.
duke@1 184 *
duke@1 185 * @see ParameterImpl
duke@1 186 *
duke@1 187 * @return an array of ParameterImpl, one element per argument
duke@1 188 * in the order the arguments are present.
duke@1 189 */
duke@1 190 public Parameter[] parameters() {
duke@1 191 // generate the parameters on the fly: they're not cached
duke@1 192 List<VarSymbol> params = sym.params();
duke@1 193 Parameter result[] = new Parameter[params.length()];
duke@1 194
duke@1 195 int i = 0;
duke@1 196 for (VarSymbol param : params) {
duke@1 197 result[i++] = new ParameterImpl(env, param);
duke@1 198 }
duke@1 199 return result;
duke@1 200 }
duke@1 201
jjg@1521 202 public AnnotationDesc[] receiverAnnotations() {
jjg@1521 203 // TODO: change how receiver annotations are output!
jjg@1521 204 Type recvtype = sym.type.asMethodType().recvtype;
jjg@1521 205 if (recvtype == null) {
jjg@1521 206 return new AnnotationDesc[0];
jjg@1521 207 }
jjg@1521 208 if (recvtype.getKind() != TypeKind.ANNOTATED) {
jjg@1521 209 return new AnnotationDesc[0];
jjg@1521 210 }
jjg@1521 211 List<? extends Compound> typeAnnos = ((com.sun.tools.javac.code.Type.AnnotatedType)recvtype).typeAnnotations;
jjg@1521 212 AnnotationDesc result[] = new AnnotationDesc[typeAnnos.length()];
jjg@1521 213 int i = 0;
jjg@1521 214 for (Attribute.Compound a : typeAnnos) {
jjg@1521 215 result[i++] = new AnnotationDescImpl(env, a);
jjg@1521 216 }
jjg@1521 217 return result;
jjg@1521 218 }
jjg@1521 219
duke@1 220 /**
duke@1 221 * Return the formal type parameters of this method or constructor.
duke@1 222 * Return an empty array if there are none.
duke@1 223 */
duke@1 224 public TypeVariable[] typeParameters() {
duke@1 225 if (env.legacyDoclet) {
duke@1 226 return new TypeVariable[0];
duke@1 227 }
duke@1 228 TypeVariable res[] = new TypeVariable[sym.type.getTypeArguments().length()];
duke@1 229 TypeMaker.getTypes(env, sym.type.getTypeArguments(), res);
duke@1 230 return res;
duke@1 231 }
duke@1 232
duke@1 233 /**
duke@1 234 * Get the signature. It is the parameter list, type is qualified.
duke@1 235 * For instance, for a method <code>mymethod(String x, int y)</code>,
duke@1 236 * it will return <code>(java.lang.String,int)</code>.
duke@1 237 */
duke@1 238 public String signature() {
duke@1 239 return makeSignature(true);
duke@1 240 }
duke@1 241
duke@1 242 /**
duke@1 243 * Get flat signature. All types are not qualified.
duke@1 244 * Return a String, which is the flat signiture of this member.
duke@1 245 * It is the parameter list, type is not qualified.
duke@1 246 * For instance, for a method <code>mymethod(String x, int y)</code>,
duke@1 247 * it will return <code>(String, int)</code>.
duke@1 248 */
duke@1 249 public String flatSignature() {
duke@1 250 return makeSignature(false);
duke@1 251 }
duke@1 252
duke@1 253 private String makeSignature(boolean full) {
jjg@910 254 StringBuilder result = new StringBuilder();
duke@1 255 result.append("(");
duke@1 256 for (List<Type> types = sym.type.getParameterTypes(); types.nonEmpty(); ) {
jjg@74 257 Type t = types.head;
duke@1 258 result.append(TypeMaker.getTypeString(env, t, full));
duke@1 259 types = types.tail;
duke@1 260 if (types.nonEmpty()) {
duke@1 261 result.append(", ");
duke@1 262 }
duke@1 263 }
duke@1 264 if (isVarArgs()) {
duke@1 265 int len = result.length();
duke@1 266 result.replace(len - 2, len, "...");
duke@1 267 }
duke@1 268 result.append(")");
duke@1 269 return result.toString();
duke@1 270 }
duke@1 271
duke@1 272 protected String typeParametersString() {
duke@1 273 return TypeMaker.typeParametersString(env, sym, true);
duke@1 274 }
duke@1 275
duke@1 276 /**
duke@1 277 * Generate a key for sorting.
duke@1 278 */
jjg@910 279 @Override
duke@1 280 CollationKey generateKey() {
duke@1 281 String k = name() + flatSignature() + typeParametersString();
duke@1 282 // ',' and '&' are between '$' and 'a': normalize to spaces.
duke@1 283 k = k.replace(',', ' ').replace('&', ' ');
duke@1 284 // System.out.println("COLLATION KEY FOR " + this + " is \"" + k + "\"");
duke@1 285 return env.doclocale.collator.getCollationKey(k);
duke@1 286 }
duke@1 287
duke@1 288 /**
duke@1 289 * Return the source position of the entity, or null if
duke@1 290 * no position is available.
duke@1 291 */
jjg@910 292 @Override
duke@1 293 public SourcePosition position() {
duke@1 294 if (sym.enclClass().sourcefile == null) return null;
jjg@197 295 return SourcePositionImpl.make(sym.enclClass().sourcefile,
duke@1 296 (tree==null) ? 0 : tree.pos,
duke@1 297 lineMap);
duke@1 298 }
duke@1 299 }

mercurial