src/share/classes/com/sun/tools/javac/code/Symbol.java

Mon, 18 Mar 2013 18:33:13 -0700

author
jjg
date
Mon, 18 Mar 2013 18:33:13 -0700
changeset 1645
97f6839673d6
parent 1620
3806171b52d8
child 1689
137994c189e5
permissions
-rw-r--r--

8007803: Implement javax.lang.model API for Type Annotations
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 1999, 2013, 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.javac.code;
    28 import java.util.Set;
    29 import java.util.concurrent.Callable;
    31 import javax.lang.model.element.*;
    32 import javax.tools.JavaFileObject;
    34 import com.sun.tools.javac.code.Type.*;
    35 import com.sun.tools.javac.comp.Attr;
    36 import com.sun.tools.javac.comp.AttrContext;
    37 import com.sun.tools.javac.comp.Env;
    38 import com.sun.tools.javac.jvm.*;
    39 import com.sun.tools.javac.model.*;
    40 import com.sun.tools.javac.tree.JCTree;
    41 import com.sun.tools.javac.util.*;
    42 import com.sun.tools.javac.util.Name;
    43 import static com.sun.tools.javac.code.Flags.*;
    44 import static com.sun.tools.javac.code.Kinds.*;
    45 import static com.sun.tools.javac.code.TypeTag.CLASS;
    46 import static com.sun.tools.javac.code.TypeTag.FORALL;
    47 import static com.sun.tools.javac.code.TypeTag.TYPEVAR;
    49 /** Root class for Java symbols. It contains subclasses
    50  *  for specific sorts of symbols, such as variables, methods and operators,
    51  *  types, packages. Each subclass is represented as a static inner class
    52  *  inside Symbol.
    53  *
    54  *  <p><b>This is NOT part of any supported API.
    55  *  If you write code that depends on this, you do so at your own risk.
    56  *  This code and its internal interfaces are subject to change or
    57  *  deletion without notice.</b>
    58  */
    59 public abstract class Symbol implements Element {
    60     // public Throwable debug = new Throwable();
    62     /** The kind of this symbol.
    63      *  @see Kinds
    64      */
    65     public int kind;
    67     /** The flags of this symbol.
    68      */
    69     public long flags_field;
    71     /** An accessor method for the flags of this symbol.
    72      *  Flags of class symbols should be accessed through the accessor
    73      *  method to make sure that the class symbol is loaded.
    74      */
    75     public long flags() { return flags_field; }
    77     /** The attributes of this symbol are contained in this
    78      * Annotations. The Annotations instance is NOT immutable.
    79      */
    80     public final Annotations annotations = new Annotations(this);
    82     /** An accessor method for the attributes of this symbol.
    83      *  Attributes of class symbols should be accessed through the accessor
    84      *  method to make sure that the class symbol is loaded.
    85      */
    86     public List<Attribute.Compound> getRawAttributes() {
    87         return annotations.getDeclarationAttributes();
    88     }
    90     /** An accessor method for the type attributes of this symbol.
    91      *  Attributes of class symbols should be accessed through the accessor
    92      *  method to make sure that the class symbol is loaded.
    93      */
    94     public List<Attribute.TypeCompound> getRawTypeAttributes() {
    95         return annotations.getTypeAttributes();
    96     }
    98     /** Fetch a particular annotation from a symbol. */
    99     public Attribute.Compound attribute(Symbol anno) {
   100         for (Attribute.Compound a : getRawAttributes()) {
   101             if (a.type.tsym == anno) return a;
   102         }
   103         return null;
   104     }
   106     /** The name of this symbol in Utf8 representation.
   107      */
   108     public Name name;
   110     /** The type of this symbol.
   111      */
   112     public Type type;
   114     /** The owner of this symbol.
   115      */
   116     public Symbol owner;
   118     /** The completer of this symbol.
   119      */
   120     public Completer completer;
   122     /** A cache for the type erasure of this symbol.
   123      */
   124     public Type erasure_field;
   126     /** Construct a symbol with given kind, flags, name, type and owner.
   127      */
   128     public Symbol(int kind, long flags, Name name, Type type, Symbol owner) {
   129         this.kind = kind;
   130         this.flags_field = flags;
   131         this.type = type;
   132         this.owner = owner;
   133         this.completer = null;
   134         this.erasure_field = null;
   135         this.name = name;
   136     }
   138     /** Clone this symbol with new owner.
   139      *  Legal only for fields and methods.
   140      */
   141     public Symbol clone(Symbol newOwner) {
   142         throw new AssertionError();
   143     }
   145     public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
   146         return v.visitSymbol(this, p);
   147     }
   149     /** The Java source which this symbol represents.
   150      *  A description of this symbol; overrides Object.
   151      */
   152     public String toString() {
   153         return name.toString();
   154     }
   156     /** A Java source description of the location of this symbol; used for
   157      *  error reporting.
   158      *
   159      * @return null if the symbol is a package or a toplevel class defined in
   160      * the default package; otherwise, the owner symbol is returned
   161      */
   162     public Symbol location() {
   163         if (owner.name == null || (owner.name.isEmpty() &&
   164                 (owner.flags() & BLOCK) == 0 && owner.kind != PCK && owner.kind != TYP)) {
   165             return null;
   166         }
   167         return owner;
   168     }
   170     public Symbol location(Type site, Types types) {
   171         if (owner.name == null || owner.name.isEmpty()) {
   172             return location();
   173         }
   174         if (owner.type.hasTag(CLASS)) {
   175             Type ownertype = types.asOuterSuper(site, owner);
   176             if (ownertype != null) return ownertype.tsym;
   177         }
   178         return owner;
   179     }
   181     public Symbol baseSymbol() {
   182         return this;
   183     }
   185     /** The symbol's erased type.
   186      */
   187     public Type erasure(Types types) {
   188         if (erasure_field == null)
   189             erasure_field = types.erasure(type);
   190         return erasure_field;
   191     }
   193     /** The external type of a symbol. This is the symbol's erased type
   194      *  except for constructors of inner classes which get the enclosing
   195      *  instance class added as first argument.
   196      */
   197     public Type externalType(Types types) {
   198         Type t = erasure(types);
   199         if (name == name.table.names.init && owner.hasOuterInstance()) {
   200             Type outerThisType = types.erasure(owner.type.getEnclosingType());
   201             return new MethodType(t.getParameterTypes().prepend(outerThisType),
   202                                   t.getReturnType(),
   203                                   t.getThrownTypes(),
   204                                   t.tsym);
   205         } else {
   206             return t;
   207         }
   208     }
   210     public boolean isStatic() {
   211         return
   212             (flags() & STATIC) != 0 ||
   213             (owner.flags() & INTERFACE) != 0 && kind != MTH;
   214     }
   216     public boolean isInterface() {
   217         return (flags() & INTERFACE) != 0;
   218     }
   220     public boolean isPrivate() {
   221         return (flags_field & Flags.AccessFlags) == PRIVATE;
   222     }
   224     public boolean isEnum() {
   225         return (flags() & ENUM) != 0;
   226     }
   228     /** Is this symbol declared (directly or indirectly) local
   229      *  to a method or variable initializer?
   230      *  Also includes fields of inner classes which are in
   231      *  turn local to a method or variable initializer.
   232      */
   233     public boolean isLocal() {
   234         return
   235             (owner.kind & (VAR | MTH)) != 0 ||
   236             (owner.kind == TYP && owner.isLocal());
   237     }
   239     /** Has this symbol an empty name? This includes anonymous
   240      *  inner classes.
   241      */
   242     public boolean isAnonymous() {
   243         return name.isEmpty();
   244     }
   246     /** Is this symbol a constructor?
   247      */
   248     public boolean isConstructor() {
   249         return name == name.table.names.init;
   250     }
   252     /** The fully qualified name of this symbol.
   253      *  This is the same as the symbol's name except for class symbols,
   254      *  which are handled separately.
   255      */
   256     public Name getQualifiedName() {
   257         return name;
   258     }
   260     /** The fully qualified name of this symbol after converting to flat
   261      *  representation. This is the same as the symbol's name except for
   262      *  class symbols, which are handled separately.
   263      */
   264     public Name flatName() {
   265         return getQualifiedName();
   266     }
   268     /** If this is a class or package, its members, otherwise null.
   269      */
   270     public Scope members() {
   271         return null;
   272     }
   274     /** A class is an inner class if it it has an enclosing instance class.
   275      */
   276     public boolean isInner() {
   277         return type.getEnclosingType().hasTag(CLASS);
   278     }
   280     /** An inner class has an outer instance if it is not an interface
   281      *  it has an enclosing instance class which might be referenced from the class.
   282      *  Nested classes can see instance members of their enclosing class.
   283      *  Their constructors carry an additional this$n parameter, inserted
   284      *  implicitly by the compiler.
   285      *
   286      *  @see #isInner
   287      */
   288     public boolean hasOuterInstance() {
   289         return
   290             type.getEnclosingType().hasTag(CLASS) && (flags() & (INTERFACE | NOOUTERTHIS)) == 0;
   291     }
   293     /** The closest enclosing class of this symbol's declaration.
   294      */
   295     public ClassSymbol enclClass() {
   296         Symbol c = this;
   297         while (c != null &&
   298                ((c.kind & TYP) == 0 || !c.type.hasTag(CLASS))) {
   299             c = c.owner;
   300         }
   301         return (ClassSymbol)c;
   302     }
   304     /** The outermost class which indirectly owns this symbol.
   305      */
   306     public ClassSymbol outermostClass() {
   307         Symbol sym = this;
   308         Symbol prev = null;
   309         while (sym.kind != PCK) {
   310             prev = sym;
   311             sym = sym.owner;
   312         }
   313         return (ClassSymbol) prev;
   314     }
   316     /** The package which indirectly owns this symbol.
   317      */
   318     public PackageSymbol packge() {
   319         Symbol sym = this;
   320         while (sym.kind != PCK) {
   321             sym = sym.owner;
   322         }
   323         return (PackageSymbol) sym;
   324     }
   326     /** Is this symbol a subclass of `base'? Only defined for ClassSymbols.
   327      */
   328     public boolean isSubClass(Symbol base, Types types) {
   329         throw new AssertionError("isSubClass " + this);
   330     }
   332     /** Fully check membership: hierarchy, protection, and hiding.
   333      *  Does not exclude methods not inherited due to overriding.
   334      */
   335     public boolean isMemberOf(TypeSymbol clazz, Types types) {
   336         return
   337             owner == clazz ||
   338             clazz.isSubClass(owner, types) &&
   339             isInheritedIn(clazz, types) &&
   340             !hiddenIn((ClassSymbol)clazz, types);
   341     }
   343     /** Is this symbol the same as or enclosed by the given class? */
   344     public boolean isEnclosedBy(ClassSymbol clazz) {
   345         for (Symbol sym = this; sym.kind != PCK; sym = sym.owner)
   346             if (sym == clazz) return true;
   347         return false;
   348     }
   350     /** Check for hiding.  Note that this doesn't handle multiple
   351      *  (interface) inheritance. */
   352     private boolean hiddenIn(ClassSymbol clazz, Types types) {
   353         if (kind == MTH && (flags() & STATIC) == 0) return false;
   354         while (true) {
   355             if (owner == clazz) return false;
   356             Scope.Entry e = clazz.members().lookup(name);
   357             while (e.scope != null) {
   358                 if (e.sym == this) return false;
   359                 if (e.sym.kind == kind &&
   360                     (kind != MTH ||
   361                      (e.sym.flags() & STATIC) != 0 &&
   362                      types.isSubSignature(e.sym.type, type)))
   363                     return true;
   364                 e = e.next();
   365             }
   366             Type superType = types.supertype(clazz.type);
   367             if (!superType.hasTag(CLASS)) return false;
   368             clazz = (ClassSymbol)superType.tsym;
   369         }
   370     }
   372     /** Is this symbol inherited into a given class?
   373      *  PRE: If symbol's owner is a interface,
   374      *       it is already assumed that the interface is a superinterface
   375      *       of given class.
   376      *  @param clazz  The class for which we want to establish membership.
   377      *                This must be a subclass of the member's owner.
   378      */
   379     public boolean isInheritedIn(Symbol clazz, Types types) {
   380         switch ((int)(flags_field & Flags.AccessFlags)) {
   381         default: // error recovery
   382         case PUBLIC:
   383             return true;
   384         case PRIVATE:
   385             return this.owner == clazz;
   386         case PROTECTED:
   387             // we model interfaces as extending Object
   388             return (clazz.flags() & INTERFACE) == 0;
   389         case 0:
   390             PackageSymbol thisPackage = this.packge();
   391             for (Symbol sup = clazz;
   392                  sup != null && sup != this.owner;
   393                  sup = types.supertype(sup.type).tsym) {
   394                 while (sup.type.hasTag(TYPEVAR))
   395                     sup = sup.type.getUpperBound().tsym;
   396                 if (sup.type.isErroneous())
   397                     return true; // error recovery
   398                 if ((sup.flags() & COMPOUND) != 0)
   399                     continue;
   400                 if (sup.packge() != thisPackage)
   401                     return false;
   402             }
   403             return (clazz.flags() & INTERFACE) == 0;
   404         }
   405     }
   407     /** The (variable or method) symbol seen as a member of given
   408      *  class type`site' (this might change the symbol's type).
   409      *  This is used exclusively for producing diagnostics.
   410      */
   411     public Symbol asMemberOf(Type site, Types types) {
   412         throw new AssertionError();
   413     }
   415     /** Does this method symbol override `other' symbol, when both are seen as
   416      *  members of class `origin'?  It is assumed that _other is a member
   417      *  of origin.
   418      *
   419      *  It is assumed that both symbols have the same name.  The static
   420      *  modifier is ignored for this test.
   421      *
   422      *  See JLS 8.4.6.1 (without transitivity) and 8.4.6.4
   423      */
   424     public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) {
   425         return false;
   426     }
   428     /** Complete the elaboration of this symbol's definition.
   429      */
   430     public void complete() throws CompletionFailure {
   431         if (completer != null) {
   432             Completer c = completer;
   433             completer = null;
   434             c.complete(this);
   435         }
   436     }
   438     /** True if the symbol represents an entity that exists.
   439      */
   440     public boolean exists() {
   441         return true;
   442     }
   444     public Type asType() {
   445         return type;
   446     }
   448     public Symbol getEnclosingElement() {
   449         return owner;
   450     }
   452     public ElementKind getKind() {
   453         return ElementKind.OTHER;       // most unkind
   454     }
   456     public Set<Modifier> getModifiers() {
   457         long flags = flags();
   458         return Flags.asModifierSet((flags & DEFAULT) != 0 ? flags & ~ABSTRACT : flags);
   459     }
   461     public Name getSimpleName() {
   462         return name;
   463     }
   465     /**
   466      * This is the implementation for {@code
   467      * javax.lang.model.element.Element.getAnnotationMirrors()}.
   468      */
   469     public final List<? extends AnnotationMirror> getAnnotationMirrors() {
   470         return getRawAttributes();
   471     }
   473     /**
   474      * TODO: Should there be a {@code
   475      * javax.lang.model.element.Element.getTypeAnnotationMirrors()}.
   476      */
   477     public final List<Attribute.TypeCompound> getTypeAnnotationMirrors() {
   478         return getRawTypeAttributes();
   479     }
   481     /**
   482      * @deprecated this method should never be used by javac internally.
   483      */
   484     @Deprecated
   485     public <A extends java.lang.annotation.Annotation> A getAnnotation(Class<A> annoType) {
   486         return JavacAnnoConstructs.getAnnotation(this, annoType);
   487     }
   489     // This method is part of the javax.lang.model API, do not use this in javac code.
   490     public <A extends java.lang.annotation.Annotation> A[] getAnnotationsByType(Class<A> annoType) {
   491         return JavacAnnoConstructs.getAnnotations(this, annoType);
   492     }
   494     // TODO: getEnclosedElements should return a javac List, fix in FilteredMemberList
   495     public java.util.List<Symbol> getEnclosedElements() {
   496         return List.nil();
   497     }
   499     public List<TypeSymbol> getTypeParameters() {
   500         ListBuffer<TypeSymbol> l = ListBuffer.lb();
   501         for (Type t : type.getTypeArguments()) {
   502             l.append(t.tsym);
   503         }
   504         return l.toList();
   505     }
   507     public static class DelegatedSymbol<T extends Symbol> extends Symbol {
   508         protected T other;
   509         public DelegatedSymbol(T other) {
   510             super(other.kind, other.flags_field, other.name, other.type, other.owner);
   511             this.other = other;
   512         }
   513         public String toString() { return other.toString(); }
   514         public Symbol location() { return other.location(); }
   515         public Symbol location(Type site, Types types) { return other.location(site, types); }
   516         public Symbol baseSymbol() { return other; }
   517         public Type erasure(Types types) { return other.erasure(types); }
   518         public Type externalType(Types types) { return other.externalType(types); }
   519         public boolean isLocal() { return other.isLocal(); }
   520         public boolean isConstructor() { return other.isConstructor(); }
   521         public Name getQualifiedName() { return other.getQualifiedName(); }
   522         public Name flatName() { return other.flatName(); }
   523         public Scope members() { return other.members(); }
   524         public boolean isInner() { return other.isInner(); }
   525         public boolean hasOuterInstance() { return other.hasOuterInstance(); }
   526         public ClassSymbol enclClass() { return other.enclClass(); }
   527         public ClassSymbol outermostClass() { return other.outermostClass(); }
   528         public PackageSymbol packge() { return other.packge(); }
   529         public boolean isSubClass(Symbol base, Types types) { return other.isSubClass(base, types); }
   530         public boolean isMemberOf(TypeSymbol clazz, Types types) { return other.isMemberOf(clazz, types); }
   531         public boolean isEnclosedBy(ClassSymbol clazz) { return other.isEnclosedBy(clazz); }
   532         public boolean isInheritedIn(Symbol clazz, Types types) { return other.isInheritedIn(clazz, types); }
   533         public Symbol asMemberOf(Type site, Types types) { return other.asMemberOf(site, types); }
   534         public void complete() throws CompletionFailure { other.complete(); }
   536         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
   537             return other.accept(v, p);
   538         }
   540         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
   541             return v.visitSymbol(other, p);
   542         }
   544         public T getUnderlyingSymbol() {
   545             return other;
   546         }
   547     }
   549     /** A class for type symbols. Type variables are represented by instances
   550      *  of this class, classes and packages by instances of subclasses.
   551      */
   552     public static class TypeSymbol
   553             extends Symbol implements TypeParameterElement {
   554         // Implements TypeParameterElement because type parameters don't
   555         // have their own TypeSymbol subclass.
   556         // TODO: type parameters should have their own TypeSymbol subclass
   558         public TypeSymbol(long flags, Name name, Type type, Symbol owner) {
   559             super(TYP, flags, name, type, owner);
   560         }
   562         /** form a fully qualified name from a name and an owner
   563          */
   564         static public Name formFullName(Name name, Symbol owner) {
   565             if (owner == null) return name;
   566             if (((owner.kind != ERR)) &&
   567                 ((owner.kind & (VAR | MTH)) != 0
   568                  || (owner.kind == TYP && owner.type.hasTag(TYPEVAR))
   569                  )) return name;
   570             Name prefix = owner.getQualifiedName();
   571             if (prefix == null || prefix == prefix.table.names.empty)
   572                 return name;
   573             else return prefix.append('.', name);
   574         }
   576         /** form a fully qualified name from a name and an owner, after
   577          *  converting to flat representation
   578          */
   579         static public Name formFlatName(Name name, Symbol owner) {
   580             if (owner == null ||
   581                 (owner.kind & (VAR | MTH)) != 0
   582                 || (owner.kind == TYP && owner.type.hasTag(TYPEVAR))
   583                 ) return name;
   584             char sep = owner.kind == TYP ? '$' : '.';
   585             Name prefix = owner.flatName();
   586             if (prefix == null || prefix == prefix.table.names.empty)
   587                 return name;
   588             else return prefix.append(sep, name);
   589         }
   591         /**
   592          * A total ordering between type symbols that refines the
   593          * class inheritance graph.
   594          *
   595          * Typevariables always precede other kinds of symbols.
   596          */
   597         public final boolean precedes(TypeSymbol that, Types types) {
   598             if (this == that)
   599                 return false;
   600             if (this.type.tag == that.type.tag) {
   601                 if (this.type.hasTag(CLASS)) {
   602                     return
   603                         types.rank(that.type) < types.rank(this.type) ||
   604                         types.rank(that.type) == types.rank(this.type) &&
   605                         that.getQualifiedName().compareTo(this.getQualifiedName()) < 0;
   606                 } else if (this.type.hasTag(TYPEVAR)) {
   607                     return types.isSubtype(this.type, that.type);
   608                 }
   609             }
   610             return this.type.hasTag(TYPEVAR);
   611         }
   613         // For type params; overridden in subclasses.
   614         public ElementKind getKind() {
   615             return ElementKind.TYPE_PARAMETER;
   616         }
   618         public java.util.List<Symbol> getEnclosedElements() {
   619             List<Symbol> list = List.nil();
   620             if (kind == TYP && type.hasTag(TYPEVAR)) {
   621                 return list;
   622             }
   623             for (Scope.Entry e = members().elems; e != null; e = e.sibling) {
   624                 if (e.sym != null && (e.sym.flags() & SYNTHETIC) == 0 && e.sym.owner == this)
   625                     list = list.prepend(e.sym);
   626             }
   627             return list;
   628         }
   630         // For type params.
   631         // Perhaps not needed if getEnclosingElement can be spec'ed
   632         // to do the same thing.
   633         // TODO: getGenericElement() might not be needed
   634         public Symbol getGenericElement() {
   635             return owner;
   636         }
   638         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
   639             Assert.check(type.hasTag(TYPEVAR)); // else override will be invoked
   640             return v.visitTypeParameter(this, p);
   641         }
   643         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
   644             return v.visitTypeSymbol(this, p);
   645         }
   647         public List<Type> getBounds() {
   648             TypeVar t = (TypeVar)type;
   649             Type bound = t.getUpperBound();
   650             if (!bound.isCompound())
   651                 return List.of(bound);
   652             ClassType ct = (ClassType)bound;
   653             if (!ct.tsym.erasure_field.isInterface()) {
   654                 return ct.interfaces_field.prepend(ct.supertype_field);
   655             } else {
   656                 // No superclass was given in bounds.
   657                 // In this case, supertype is Object, erasure is first interface.
   658                 return ct.interfaces_field;
   659             }
   660         }
   661     }
   663     /** A class for package symbols
   664      */
   665     public static class PackageSymbol extends TypeSymbol
   666         implements PackageElement {
   668         public Scope members_field;
   669         public Name fullname;
   670         public ClassSymbol package_info; // see bug 6443073
   672         public PackageSymbol(Name name, Type type, Symbol owner) {
   673             super(0, name, type, owner);
   674             this.kind = PCK;
   675             this.members_field = null;
   676             this.fullname = formFullName(name, owner);
   677         }
   679         public PackageSymbol(Name name, Symbol owner) {
   680             this(name, null, owner);
   681             this.type = new PackageType(this);
   682         }
   684         public String toString() {
   685             return fullname.toString();
   686         }
   688         public Name getQualifiedName() {
   689             return fullname;
   690         }
   692         public boolean isUnnamed() {
   693             return name.isEmpty() && owner != null;
   694         }
   696         public Scope members() {
   697             if (completer != null) complete();
   698             return members_field;
   699         }
   701         public long flags() {
   702             if (completer != null) complete();
   703             return flags_field;
   704         }
   706         @Override
   707         public List<Attribute.Compound> getRawAttributes() {
   708             if (completer != null) complete();
   709             if (package_info != null && package_info.completer != null) {
   710                 package_info.complete();
   711                 mergeAttributes();
   712             }
   713             return super.getRawAttributes();
   714         }
   716         private void mergeAttributes() {
   717             if (annotations.isEmpty() &&
   718                 !package_info.annotations.isEmpty()) {
   719                 annotations.setAttributes(package_info.annotations);
   720             }
   721         }
   723         /** A package "exists" if a type or package that exists has
   724          *  been seen within it.
   725          */
   726         public boolean exists() {
   727             return (flags_field & EXISTS) != 0;
   728         }
   730         public ElementKind getKind() {
   731             return ElementKind.PACKAGE;
   732         }
   734         public Symbol getEnclosingElement() {
   735             return null;
   736         }
   738         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
   739             return v.visitPackage(this, p);
   740         }
   742         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
   743             return v.visitPackageSymbol(this, p);
   744         }
   745     }
   747     /** A class for class symbols
   748      */
   749     public static class ClassSymbol extends TypeSymbol implements TypeElement {
   751         /** a scope for all class members; variables, methods and inner classes
   752          *  type parameters are not part of this scope
   753          */
   754         public Scope members_field;
   756         /** the fully qualified name of the class, i.e. pck.outer.inner.
   757          *  null for anonymous classes
   758          */
   759         public Name fullname;
   761         /** the fully qualified name of the class after converting to flat
   762          *  representation, i.e. pck.outer$inner,
   763          *  set externally for local and anonymous classes
   764          */
   765         public Name flatname;
   767         /** the sourcefile where the class came from
   768          */
   769         public JavaFileObject sourcefile;
   771         /** the classfile from where to load this class
   772          *  this will have extension .class or .java
   773          */
   774         public JavaFileObject classfile;
   776         /** the list of translated local classes (used for generating
   777          * InnerClasses attribute)
   778          */
   779         public List<ClassSymbol> trans_local;
   781         /** the constant pool of the class
   782          */
   783         public Pool pool;
   785         public ClassSymbol(long flags, Name name, Type type, Symbol owner) {
   786             super(flags, name, type, owner);
   787             this.members_field = null;
   788             this.fullname = formFullName(name, owner);
   789             this.flatname = formFlatName(name, owner);
   790             this.sourcefile = null;
   791             this.classfile = null;
   792             this.pool = null;
   793         }
   795         public ClassSymbol(long flags, Name name, Symbol owner) {
   796             this(
   797                 flags,
   798                 name,
   799                 new ClassType(Type.noType, null, null),
   800                 owner);
   801             this.type.tsym = this;
   802         }
   804         /** The Java source which this symbol represents.
   805          */
   806         public String toString() {
   807             return className();
   808         }
   810         public long flags() {
   811             if (completer != null) complete();
   812             return flags_field;
   813         }
   815         public Scope members() {
   816             if (completer != null) complete();
   817             return members_field;
   818         }
   820         @Override
   821         public List<Attribute.Compound> getRawAttributes() {
   822             if (completer != null) complete();
   823             return super.getRawAttributes();
   824         }
   826         @Override
   827         public List<Attribute.TypeCompound> getRawTypeAttributes() {
   828             if (completer != null) complete();
   829             return super.getRawTypeAttributes();
   830         }
   832         public Type erasure(Types types) {
   833             if (erasure_field == null)
   834                 erasure_field = new ClassType(types.erasure(type.getEnclosingType()),
   835                                               List.<Type>nil(), this);
   836             return erasure_field;
   837         }
   839         public String className() {
   840             if (name.isEmpty())
   841                 return
   842                     Log.getLocalizedString("anonymous.class", flatname);
   843             else
   844                 return fullname.toString();
   845         }
   847         public Name getQualifiedName() {
   848             return fullname;
   849         }
   851         public Name flatName() {
   852             return flatname;
   853         }
   855         public boolean isSubClass(Symbol base, Types types) {
   856             if (this == base) {
   857                 return true;
   858             } else if ((base.flags() & INTERFACE) != 0) {
   859                 for (Type t = type; t.hasTag(CLASS); t = types.supertype(t))
   860                     for (List<Type> is = types.interfaces(t);
   861                          is.nonEmpty();
   862                          is = is.tail)
   863                         if (is.head.tsym.isSubClass(base, types)) return true;
   864             } else {
   865                 for (Type t = type; t.hasTag(CLASS); t = types.supertype(t))
   866                     if (t.tsym == base) return true;
   867             }
   868             return false;
   869         }
   871         /** Complete the elaboration of this symbol's definition.
   872          */
   873         public void complete() throws CompletionFailure {
   874             try {
   875                 super.complete();
   876             } catch (CompletionFailure ex) {
   877                 // quiet error recovery
   878                 flags_field |= (PUBLIC|STATIC);
   879                 this.type = new ErrorType(this, Type.noType);
   880                 throw ex;
   881             }
   882         }
   884         public List<Type> getInterfaces() {
   885             complete();
   886             if (type instanceof ClassType) {
   887                 ClassType t = (ClassType)type;
   888                 if (t.interfaces_field == null) // FIXME: shouldn't be null
   889                     t.interfaces_field = List.nil();
   890                 if (t.all_interfaces_field != null)
   891                     return Type.getModelTypes(t.all_interfaces_field);
   892                 return t.interfaces_field;
   893             } else {
   894                 return List.nil();
   895             }
   896         }
   898         public Type getSuperclass() {
   899             complete();
   900             if (type instanceof ClassType) {
   901                 ClassType t = (ClassType)type;
   902                 if (t.supertype_field == null) // FIXME: shouldn't be null
   903                     t.supertype_field = Type.noType;
   904                 // An interface has no superclass; its supertype is Object.
   905                 return t.isInterface()
   906                     ? Type.noType
   907                     : t.supertype_field.getModelType();
   908             } else {
   909                 return Type.noType;
   910             }
   911         }
   913         public ElementKind getKind() {
   914             long flags = flags();
   915             if ((flags & ANNOTATION) != 0)
   916                 return ElementKind.ANNOTATION_TYPE;
   917             else if ((flags & INTERFACE) != 0)
   918                 return ElementKind.INTERFACE;
   919             else if ((flags & ENUM) != 0)
   920                 return ElementKind.ENUM;
   921             else
   922                 return ElementKind.CLASS;
   923         }
   925         public NestingKind getNestingKind() {
   926             complete();
   927             if (owner.kind == PCK)
   928                 return NestingKind.TOP_LEVEL;
   929             else if (name.isEmpty())
   930                 return NestingKind.ANONYMOUS;
   931             else if (owner.kind == MTH)
   932                 return NestingKind.LOCAL;
   933             else
   934                 return NestingKind.MEMBER;
   935         }
   937         /**
   938          * Since this method works in terms of the runtime representation
   939          * of annotations, it should never be used by javac internally.
   940          */
   941         @Override
   942         public <A extends java.lang.annotation.Annotation> A getAnnotation(Class<A> annoType) {
   943             return JavacAnnoConstructs.getAnnotation(this, annoType);
   944         }
   946         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
   947             return v.visitType(this, p);
   948         }
   950         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
   951             return v.visitClassSymbol(this, p);
   952         }
   953     }
   956     /** A class for variable symbols
   957      */
   958     public static class VarSymbol extends Symbol implements VariableElement {
   960         /** The variable's declaration position.
   961          */
   962         public int pos = Position.NOPOS;
   964         /** The variable's address. Used for different purposes during
   965          *  flow analysis, translation and code generation.
   966          *  Flow analysis:
   967          *    If this is a blank final or local variable, its sequence number.
   968          *  Translation:
   969          *    If this is a private field, its access number.
   970          *  Code generation:
   971          *    If this is a local variable, its logical slot number.
   972          */
   973         public int adr = -1;
   975         /** Construct a variable symbol, given its flags, name, type and owner.
   976          */
   977         public VarSymbol(long flags, Name name, Type type, Symbol owner) {
   978             super(VAR, flags, name, type, owner);
   979         }
   981         /** Clone this symbol with new owner.
   982          */
   983         public VarSymbol clone(Symbol newOwner) {
   984             VarSymbol v = new VarSymbol(flags_field, name, type, newOwner) {
   985                 @Override
   986                 public Symbol baseSymbol() {
   987                     return VarSymbol.this;
   988                 }
   989             };
   990             v.pos = pos;
   991             v.adr = adr;
   992             v.data = data;
   993 //          System.out.println("clone " + v + " in " + newOwner);//DEBUG
   994             return v;
   995         }
   997         public String toString() {
   998             return name.toString();
   999         }
  1001         public Symbol asMemberOf(Type site, Types types) {
  1002             return new VarSymbol(flags_field, name, types.memberType(site, this), owner);
  1005         public ElementKind getKind() {
  1006             long flags = flags();
  1007             if ((flags & PARAMETER) != 0) {
  1008                 if (isExceptionParameter())
  1009                     return ElementKind.EXCEPTION_PARAMETER;
  1010                 else
  1011                     return ElementKind.PARAMETER;
  1012             } else if ((flags & ENUM) != 0) {
  1013                 return ElementKind.ENUM_CONSTANT;
  1014             } else if (owner.kind == TYP || owner.kind == ERR) {
  1015                 return ElementKind.FIELD;
  1016             } else if (isResourceVariable()) {
  1017                 return ElementKind.RESOURCE_VARIABLE;
  1018             } else {
  1019                 return ElementKind.LOCAL_VARIABLE;
  1023         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
  1024             return v.visitVariable(this, p);
  1027         public Object getConstantValue() { // Mirror API
  1028             return Constants.decode(getConstValue(), type);
  1031         public void setLazyConstValue(final Env<AttrContext> env,
  1032                                       final Attr attr,
  1033                                       final JCTree.JCExpression initializer)
  1035             setData(new Callable<Object>() {
  1036                 public Object call() {
  1037                     return attr.attribLazyConstantValue(env, initializer, type);
  1039             });
  1042         /**
  1043          * The variable's constant value, if this is a constant.
  1044          * Before the constant value is evaluated, it points to an
  1045          * initalizer environment.  If this is not a constant, it can
  1046          * be used for other stuff.
  1047          */
  1048         private Object data;
  1050         public boolean isExceptionParameter() {
  1051             return data == ElementKind.EXCEPTION_PARAMETER;
  1054         public boolean isResourceVariable() {
  1055             return data == ElementKind.RESOURCE_VARIABLE;
  1058         public Object getConstValue() {
  1059             // TODO: Consider if getConstValue and getConstantValue can be collapsed
  1060             if (data == ElementKind.EXCEPTION_PARAMETER ||
  1061                 data == ElementKind.RESOURCE_VARIABLE) {
  1062                 return null;
  1063             } else if (data instanceof Callable<?>) {
  1064                 // In this case, this is a final variable, with an as
  1065                 // yet unevaluated initializer.
  1066                 Callable<?> eval = (Callable<?>)data;
  1067                 data = null; // to make sure we don't evaluate this twice.
  1068                 try {
  1069                     data = eval.call();
  1070                 } catch (Exception ex) {
  1071                     throw new AssertionError(ex);
  1074             return data;
  1077         public void setData(Object data) {
  1078             Assert.check(!(data instanceof Env<?>), this);
  1079             this.data = data;
  1082         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
  1083             return v.visitVarSymbol(this, p);
  1087     /** A class for method symbols.
  1088      */
  1089     public static class MethodSymbol extends Symbol implements ExecutableElement {
  1091         /** The code of the method. */
  1092         public Code code = null;
  1094         /** The extra (synthetic/mandated) parameters of the method. */
  1095         public List<VarSymbol> extraParams = List.nil();
  1097         /** The parameters of the method. */
  1098         public List<VarSymbol> params = null;
  1100         /** The names of the parameters */
  1101         public List<Name> savedParameterNames;
  1103         /** For an attribute field accessor, its default value if any.
  1104          *  The value is null if none appeared in the method
  1105          *  declaration.
  1106          */
  1107         public Attribute defaultValue = null;
  1109         /** Construct a method symbol, given its flags, name, type and owner.
  1110          */
  1111         public MethodSymbol(long flags, Name name, Type type, Symbol owner) {
  1112             super(MTH, flags, name, type, owner);
  1113             if (owner.type.hasTag(TYPEVAR)) Assert.error(owner + "." + name);
  1116         /** Clone this symbol with new owner.
  1117          */
  1118         public MethodSymbol clone(Symbol newOwner) {
  1119             MethodSymbol m = new MethodSymbol(flags_field, name, type, newOwner) {
  1120                 @Override
  1121                 public Symbol baseSymbol() {
  1122                     return MethodSymbol.this;
  1124             };
  1125             m.code = code;
  1126             return m;
  1129         /** The Java source which this symbol represents.
  1130          */
  1131         public String toString() {
  1132             if ((flags() & BLOCK) != 0) {
  1133                 return owner.name.toString();
  1134             } else {
  1135                 String s = (name == name.table.names.init)
  1136                     ? owner.name.toString()
  1137                     : name.toString();
  1138                 if (type != null) {
  1139                     if (type.hasTag(FORALL))
  1140                         s = "<" + ((ForAll)type).getTypeArguments() + ">" + s;
  1141                     s += "(" + type.argtypes((flags() & VARARGS) != 0) + ")";
  1143                 return s;
  1147         public boolean isDynamic() {
  1148             return false;
  1151         /** find a symbol that this (proxy method) symbol implements.
  1152          *  @param    c       The class whose members are searched for
  1153          *                    implementations
  1154          */
  1155         public Symbol implemented(TypeSymbol c, Types types) {
  1156             Symbol impl = null;
  1157             for (List<Type> is = types.interfaces(c.type);
  1158                  impl == null && is.nonEmpty();
  1159                  is = is.tail) {
  1160                 TypeSymbol i = is.head.tsym;
  1161                 impl = implementedIn(i, types);
  1162                 if (impl == null)
  1163                     impl = implemented(i, types);
  1165             return impl;
  1168         public Symbol implementedIn(TypeSymbol c, Types types) {
  1169             Symbol impl = null;
  1170             for (Scope.Entry e = c.members().lookup(name);
  1171                  impl == null && e.scope != null;
  1172                  e = e.next()) {
  1173                 if (this.overrides(e.sym, (TypeSymbol)owner, types, true) &&
  1174                     // FIXME: I suspect the following requires a
  1175                     // subst() for a parametric return type.
  1176                     types.isSameType(type.getReturnType(),
  1177                                      types.memberType(owner.type, e.sym).getReturnType())) {
  1178                     impl = e.sym;
  1181             return impl;
  1184         /** Will the erasure of this method be considered by the VM to
  1185          *  override the erasure of the other when seen from class `origin'?
  1186          */
  1187         public boolean binaryOverrides(Symbol _other, TypeSymbol origin, Types types) {
  1188             if (isConstructor() || _other.kind != MTH) return false;
  1190             if (this == _other) return true;
  1191             MethodSymbol other = (MethodSymbol)_other;
  1193             // check for a direct implementation
  1194             if (other.isOverridableIn((TypeSymbol)owner) &&
  1195                 types.asSuper(owner.type, other.owner) != null &&
  1196                 types.isSameType(erasure(types), other.erasure(types)))
  1197                 return true;
  1199             // check for an inherited implementation
  1200             return
  1201                 (flags() & ABSTRACT) == 0 &&
  1202                 other.isOverridableIn(origin) &&
  1203                 this.isMemberOf(origin, types) &&
  1204                 types.isSameType(erasure(types), other.erasure(types));
  1207         /** The implementation of this (abstract) symbol in class origin,
  1208          *  from the VM's point of view, null if method does not have an
  1209          *  implementation in class.
  1210          *  @param origin   The class of which the implementation is a member.
  1211          */
  1212         public MethodSymbol binaryImplementation(ClassSymbol origin, Types types) {
  1213             for (TypeSymbol c = origin; c != null; c = types.supertype(c.type).tsym) {
  1214                 for (Scope.Entry e = c.members().lookup(name);
  1215                      e.scope != null;
  1216                      e = e.next()) {
  1217                     if (e.sym.kind == MTH &&
  1218                         ((MethodSymbol)e.sym).binaryOverrides(this, origin, types))
  1219                         return (MethodSymbol)e.sym;
  1222             return null;
  1225         /** Does this symbol override `other' symbol, when both are seen as
  1226          *  members of class `origin'?  It is assumed that _other is a member
  1227          *  of origin.
  1229          *  It is assumed that both symbols have the same name.  The static
  1230          *  modifier is ignored for this test.
  1232          *  See JLS 8.4.6.1 (without transitivity) and 8.4.6.4
  1233          */
  1234         public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) {
  1235             if (isConstructor() || _other.kind != MTH) return false;
  1237             if (this == _other) return true;
  1238             MethodSymbol other = (MethodSymbol)_other;
  1240             // check for a direct implementation
  1241             if (other.isOverridableIn((TypeSymbol)owner) &&
  1242                 types.asSuper(owner.type, other.owner) != null) {
  1243                 Type mt = types.memberType(owner.type, this);
  1244                 Type ot = types.memberType(owner.type, other);
  1245                 if (types.isSubSignature(mt, ot)) {
  1246                     if (!checkResult)
  1247                         return true;
  1248                     if (types.returnTypeSubstitutable(mt, ot))
  1249                         return true;
  1253             // check for an inherited implementation
  1254             if ((flags() & ABSTRACT) != 0 ||
  1255                     ((other.flags() & ABSTRACT) == 0 && (other.flags() & DEFAULT) == 0) ||
  1256                     !other.isOverridableIn(origin) ||
  1257                     !this.isMemberOf(origin, types))
  1258                 return false;
  1260             // assert types.asSuper(origin.type, other.owner) != null;
  1261             Type mt = types.memberType(origin.type, this);
  1262             Type ot = types.memberType(origin.type, other);
  1263             return
  1264                 types.isSubSignature(mt, ot) &&
  1265                 (!checkResult || types.resultSubtype(mt, ot, types.noWarnings));
  1268         private boolean isOverridableIn(TypeSymbol origin) {
  1269             // JLS 8.4.6.1
  1270             switch ((int)(flags_field & Flags.AccessFlags)) {
  1271             case Flags.PRIVATE:
  1272                 return false;
  1273             case Flags.PUBLIC:
  1274                 return !this.owner.isInterface() ||
  1275                         (flags_field & STATIC) == 0;
  1276             case Flags.PROTECTED:
  1277                 return (origin.flags() & INTERFACE) == 0;
  1278             case 0:
  1279                 // for package private: can only override in the same
  1280                 // package
  1281                 return
  1282                     this.packge() == origin.packge() &&
  1283                     (origin.flags() & INTERFACE) == 0;
  1284             default:
  1285                 return false;
  1289         @Override
  1290         public boolean isInheritedIn(Symbol clazz, Types types) {
  1291             switch ((int)(flags_field & Flags.AccessFlags)) {
  1292                 case PUBLIC:
  1293                     return !this.owner.isInterface() ||
  1294                             clazz == owner ||
  1295                             (flags_field & STATIC) == 0;
  1296                 default:
  1297                     return super.isInheritedIn(clazz, types);
  1301         /** The implementation of this (abstract) symbol in class origin;
  1302          *  null if none exists. Synthetic methods are not considered
  1303          *  as possible implementations.
  1304          */
  1305         public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult) {
  1306             return implementation(origin, types, checkResult, implementation_filter);
  1308         // where
  1309             public static final Filter<Symbol> implementation_filter = new Filter<Symbol>() {
  1310                 public boolean accepts(Symbol s) {
  1311                     return s.kind == Kinds.MTH &&
  1312                             (s.flags() & SYNTHETIC) == 0;
  1314             };
  1316         public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult, Filter<Symbol> implFilter) {
  1317             MethodSymbol res = types.implementation(this, origin, checkResult, implFilter);
  1318             if (res != null)
  1319                 return res;
  1320             // if origin is derived from a raw type, we might have missed
  1321             // an implementation because we do not know enough about instantiations.
  1322             // in this case continue with the supertype as origin.
  1323             if (types.isDerivedRaw(origin.type) && !origin.isInterface())
  1324                 return implementation(types.supertype(origin.type).tsym, types, checkResult);
  1325             else
  1326                 return null;
  1329         public List<VarSymbol> params() {
  1330             owner.complete();
  1331             if (params == null) {
  1332                 // If ClassReader.saveParameterNames has been set true, then
  1333                 // savedParameterNames will be set to a list of names that
  1334                 // matches the types in type.getParameterTypes().  If any names
  1335                 // were not found in the class file, those names in the list will
  1336                 // be set to the empty name.
  1337                 // If ClassReader.saveParameterNames has been set false, then
  1338                 // savedParameterNames will be null.
  1339                 List<Name> paramNames = savedParameterNames;
  1340                 savedParameterNames = null;
  1341                 // discard the provided names if the list of names is the wrong size.
  1342                 if (paramNames == null || paramNames.size() != type.getParameterTypes().size()) {
  1343                     paramNames = List.nil();
  1345                 ListBuffer<VarSymbol> buf = new ListBuffer<VarSymbol>();
  1346                 List<Name> remaining = paramNames;
  1347                 // assert: remaining and paramNames are both empty or both
  1348                 // have same cardinality as type.getParameterTypes()
  1349                 int i = 0;
  1350                 for (Type t : type.getParameterTypes()) {
  1351                     Name paramName;
  1352                     if (remaining.isEmpty()) {
  1353                         // no names for any parameters available
  1354                         paramName = createArgName(i, paramNames);
  1355                     } else {
  1356                         paramName = remaining.head;
  1357                         remaining = remaining.tail;
  1358                         if (paramName.isEmpty()) {
  1359                             // no name for this specific parameter
  1360                             paramName = createArgName(i, paramNames);
  1363                     buf.append(new VarSymbol(PARAMETER, paramName, t, this));
  1364                     i++;
  1366                 params = buf.toList();
  1368             return params;
  1371         // Create a name for the argument at position 'index' that is not in
  1372         // the exclude list. In normal use, either no names will have been
  1373         // provided, in which case the exclude list is empty, or all the names
  1374         // will have been provided, in which case this method will not be called.
  1375         private Name createArgName(int index, List<Name> exclude) {
  1376             String prefix = "arg";
  1377             while (true) {
  1378                 Name argName = name.table.fromString(prefix + index);
  1379                 if (!exclude.contains(argName))
  1380                     return argName;
  1381                 prefix += "$";
  1385         public Symbol asMemberOf(Type site, Types types) {
  1386             return new MethodSymbol(flags_field, name, types.memberType(site, this), owner);
  1389         public ElementKind getKind() {
  1390             if (name == name.table.names.init)
  1391                 return ElementKind.CONSTRUCTOR;
  1392             else if (name == name.table.names.clinit)
  1393                 return ElementKind.STATIC_INIT;
  1394             else if ((flags() & BLOCK) != 0)
  1395                 return isStatic() ? ElementKind.STATIC_INIT : ElementKind.INSTANCE_INIT;
  1396             else
  1397                 return ElementKind.METHOD;
  1400         public boolean isStaticOrInstanceInit() {
  1401             return getKind() == ElementKind.STATIC_INIT ||
  1402                     getKind() == ElementKind.INSTANCE_INIT;
  1405         /**
  1406          * A polymorphic signature method (JLS SE 7, 8.4.1) is a method that
  1407          * (i) is declared in the java.lang.invoke.MethodHandle class, (ii) takes
  1408          * a single variable arity parameter (iii) whose declared type is Object[],
  1409          * (iv) has a return type of Object and (v) is native.
  1410          */
  1411         public boolean isSignaturePolymorphic(Types types) {
  1412             List<Type> argtypes = type.getParameterTypes();
  1413             Type firstElemType = argtypes.nonEmpty() ?
  1414                     types.elemtype(argtypes.head) :
  1415                     null;
  1416             return owner == types.syms.methodHandleType.tsym &&
  1417                     argtypes.length() == 1 &&
  1418                     firstElemType != null &&
  1419                     types.isSameType(firstElemType, types.syms.objectType) &&
  1420                     types.isSameType(type.getReturnType(), types.syms.objectType) &&
  1421                     (flags() & NATIVE) != 0;
  1424         public Attribute getDefaultValue() {
  1425             return defaultValue;
  1428         public List<VarSymbol> getParameters() {
  1429             return params();
  1432         public boolean isVarArgs() {
  1433             return (flags() & VARARGS) != 0;
  1436         public boolean isDefault() {
  1437             return (flags() & DEFAULT) != 0;
  1440         public <R, P> R accept(ElementVisitor<R, P> v, P p) {
  1441             return v.visitExecutable(this, p);
  1444         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
  1445             return v.visitMethodSymbol(this, p);
  1448         public Type getReceiverType() {
  1449             return asType().getReceiverType();
  1452         public Type getReturnType() {
  1453             return asType().getReturnType();
  1456         public List<Type> getThrownTypes() {
  1457             return asType().getThrownTypes();
  1461     /** A class for invokedynamic method calls.
  1462      */
  1463     public static class DynamicMethodSymbol extends MethodSymbol {
  1465         public Object[] staticArgs;
  1466         public Symbol bsm;
  1467         public int bsmKind;
  1469         public DynamicMethodSymbol(Name name, Symbol owner, int bsmKind, MethodSymbol bsm, Type type, Object[] staticArgs) {
  1470             super(0, name, type, owner);
  1471             this.bsm = bsm;
  1472             this.bsmKind = bsmKind;
  1473             this.staticArgs = staticArgs;
  1476         @Override
  1477         public boolean isDynamic() {
  1478             return true;
  1482     /** A class for predefined operators.
  1483      */
  1484     public static class OperatorSymbol extends MethodSymbol {
  1486         public int opcode;
  1488         public OperatorSymbol(Name name, Type type, int opcode, Symbol owner) {
  1489             super(PUBLIC | STATIC, name, type, owner);
  1490             this.opcode = opcode;
  1493         public <R, P> R accept(Symbol.Visitor<R, P> v, P p) {
  1494             return v.visitOperatorSymbol(this, p);
  1498     /** Symbol completer interface.
  1499      */
  1500     public static interface Completer {
  1501         void complete(Symbol sym) throws CompletionFailure;
  1504     public static class CompletionFailure extends RuntimeException {
  1505         private static final long serialVersionUID = 0;
  1506         public Symbol sym;
  1508         /** A diagnostic object describing the failure
  1509          */
  1510         public JCDiagnostic diag;
  1512         /** A localized string describing the failure.
  1513          * @deprecated Use {@code getDetail()} or {@code getMessage()}
  1514          */
  1515         @Deprecated
  1516         public String errmsg;
  1518         public CompletionFailure(Symbol sym, String errmsg) {
  1519             this.sym = sym;
  1520             this.errmsg = errmsg;
  1521 //          this.printStackTrace();//DEBUG
  1524         public CompletionFailure(Symbol sym, JCDiagnostic diag) {
  1525             this.sym = sym;
  1526             this.diag = diag;
  1527 //          this.printStackTrace();//DEBUG
  1530         public JCDiagnostic getDiagnostic() {
  1531             return diag;
  1534         @Override
  1535         public String getMessage() {
  1536             if (diag != null)
  1537                 return diag.getMessage(null);
  1538             else
  1539                 return errmsg;
  1542         public Object getDetailValue() {
  1543             return (diag != null ? diag : errmsg);
  1546         @Override
  1547         public CompletionFailure initCause(Throwable cause) {
  1548             super.initCause(cause);
  1549             return this;
  1554     /**
  1555      * A visitor for symbols.  A visitor is used to implement operations
  1556      * (or relations) on symbols.  Most common operations on types are
  1557      * binary relations and this interface is designed for binary
  1558      * relations, that is, operations on the form
  1559      * Symbol&nbsp;&times;&nbsp;P&nbsp;&rarr;&nbsp;R.
  1560      * <!-- In plain text: Type x P -> R -->
  1562      * @param <R> the return type of the operation implemented by this
  1563      * visitor; use Void if no return type is needed.
  1564      * @param <P> the type of the second argument (the first being the
  1565      * symbol itself) of the operation implemented by this visitor; use
  1566      * Void if a second argument is not needed.
  1567      */
  1568     public interface Visitor<R,P> {
  1569         R visitClassSymbol(ClassSymbol s, P arg);
  1570         R visitMethodSymbol(MethodSymbol s, P arg);
  1571         R visitPackageSymbol(PackageSymbol s, P arg);
  1572         R visitOperatorSymbol(OperatorSymbol s, P arg);
  1573         R visitVarSymbol(VarSymbol s, P arg);
  1574         R visitTypeSymbol(TypeSymbol s, P arg);
  1575         R visitSymbol(Symbol s, P arg);

mercurial