当前位置: 首页>>代码示例>>Java>>正文


Java List类代码示例

本文整理汇总了Java中com.sun.tools.javac.util.List的典型用法代码示例。如果您正苦于以下问题:Java List类的具体用法?Java List怎么用?Java List使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


List类属于com.sun.tools.javac.util包,在下文中一共展示了List类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: replaceExtCall

import com.sun.tools.javac.util.List; //导入依赖的package包/类
private void replaceExtCall( JCTree.JCMethodInvocation tree, Symbol.MethodSymbol method )
{
  JCExpression methodSelect = tree.getMethodSelect();
  if( methodSelect instanceof JCTree.JCFieldAccess )
  {
    JCTree.JCFieldAccess m = (JCTree.JCFieldAccess)methodSelect;
    boolean isStatic = m.sym.getModifiers().contains( javax.lang.model.element.Modifier.STATIC );
    TreeMaker make = _tp.getTreeMaker();
    JavacElements javacElems = _tp.getElementUtil();
    JCExpression thisArg = m.selected;
    String extensionFqn = method.getEnclosingElement().asType().tsym.toString();
    m.selected = memberAccess( make, javacElems, extensionFqn );
    BasicJavacTask javacTask = ClassSymbols.instance( _sp.getTypeLoader().getModule() ).getJavacTask();
    Symbol.ClassSymbol extensionClassSym = ClassSymbols.instance( _sp.getTypeLoader().getModule() ).getClassSymbol( javacTask, extensionFqn ).getFirst();
    assignTypes( m.selected, extensionClassSym );
    m.sym = method;
    m.type = method.type;

    if( !isStatic )
    {
      ArrayList<JCExpression> newArgs = new ArrayList<>( tree.args );
      newArgs.add( 0, thisArg );
      tree.args = List.from( newArgs );
    }
  }
}
 
开发者ID:manifold-systems,项目名称:manifold,代码行数:27,代码来源:ExtensionTransformer.java

示例2: printImportsBlock

import com.sun.tools.javac.util.List; //导入依赖的package包/类
public void printImportsBlock(java.util.List<? extends JCTree> imports, boolean maybeAppendNewLine) {
    boolean hasImports = !imports.isEmpty();
    CodeStyle.ImportGroups importGroups = null;
    if (hasImports) {
        blankLines(Math.max(cs.getBlankLinesBeforeImports(), diffContext.origUnit.getPackageName() != null ? cs.getBlankLinesAfterPackage() : 0));
        if (cs.separateImportGroups())
            importGroups = cs.getImportGroups();
    }
    int lastGroup = -1;
    for (JCTree importStat : imports) {
        if (importGroups != null) {
            Name name = fullName(((JCImport)importStat).qualid);
            int group = name != null ? importGroups.getGroupId(name.toString(), ((JCImport)importStat).staticImport) : -1;
            if (lastGroup >= 0 && lastGroup != group)
                blankline();
            lastGroup = group;
        }
        printStat(importStat);
        newline();
    }
    if (hasImports && maybeAppendNewLine) {
        blankLines(cs.getBlankLinesAfterImports());
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:25,代码来源:VeryPretty.java

示例3: classOrInterfaceBody

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/** ClassBody     = "{" {ClassBodyDeclaration} "}"
 *  InterfaceBody = "{" {InterfaceBodyDeclaration} "}"
 */
List<JCTree> classOrInterfaceBody(Name className, boolean isInterface) {
    accept(LBRACE);
    if (S.pos() <= errorEndPos) {
        // error recovery
        skip(false, true, false, false);
        if (S.token() == LBRACE)
            S.nextToken();
    }
    ListBuffer<JCTree> defs = new ListBuffer<JCTree>();
    while (S.token() != RBRACE && S.token() != EOF) {
        defs.appendList(classOrInterfaceBodyDeclaration(className, isInterface));
        if (S.pos() <= errorEndPos) {
           // error recovery
           skip(false, true, true, false);
       }
    }
    accept(RBRACE);
    return defs.toList();
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:23,代码来源:JavacParser.java

示例4: addOverrideBridges

import com.sun.tools.javac.util.List; //导入依赖的package包/类
private void addOverrideBridges(DiagnosticPosition pos,
                                MethodSymbol impl,
                                MethodSymbol member,
                                ClassSymbol c,
                                ListBuffer<JCTree> bridges) {
    Type implErasure = impl.erasure(types);
    long flags = (impl.flags() & AccessFlags) | SYNTHETIC | BRIDGE | OVERRIDE_BRIDGE;
    member = new MethodSymbol(flags, member.name, member.type, c);
    JCMethodDecl md = make.MethodDef(member, null);
    JCExpression receiver = make.Super(types.supertype(c.type).tsym.erasure(types), c);
    Type calltype = erasure(impl.type.getReturnType());
    JCExpression call =
        make.Apply(null,
                   make.Select(receiver, impl).setType(calltype),
                   translateArgs(make.Idents(md.params),
                                 implErasure.getParameterTypes(), null))
        .setType(calltype);
    JCStatement stat = (member.getReturnType().tag == VOID)
        ? make.Exec(call)
        : make.Return(coerce(call, member.erasure(types).getReturnType()));
    md.body = make.Block(0, List.of(stat));
    c.members().enter(member);
    bridges.append(md);
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:25,代码来源:TransTypes.java

示例5: solveLegacy

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/**
 * Instantiate inference variables in legacy mode (JLS 15.12.2.7, 15.12.2.8).
 * During overload resolution, instantiation is done by doing a partial
 * inference process using eq/lower bound instantiation. During check,
 * we also instantiate any remaining vars by repeatedly using eq/upper
 * instantiation, until all variables are solved.
 */
public void solveLegacy(boolean partial, Warner warn, EnumSet<InferenceStep> steps) {
    while (true) {
        List<Type> solvedVars = solveBasic(steps);
        if (restvars().isEmpty() || partial) {
            //all variables have been instantiated - exit
            break;
        } else if (solvedVars.isEmpty()) {
            //some variables could not be instantiated because of cycles in
            //upper bounds - provide a (possibly recursive) default instantiation
            infer.instantiateAsUninferredVars(restvars(), this);
            break;
        } else {
            //some variables have been instantiated - replace newly instantiated
            //variables in remaining upper bounds and continue
            for (Type t : undetvars) {
                UndetVar uv = (UndetVar)t;
                uv.substBounds(solvedVars, asInstTypes(solvedVars), types);
            }
        }
    }
    infer.doIncorporation(this, warn);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:30,代码来源:InferenceContext.java

示例6: notifyChange

import com.sun.tools.javac.util.List; //导入依赖的package包/类
void notifyChange(List<Type> inferredVars) {
    InferenceException thrownEx = null;
    for (Map.Entry<FreeTypeListener, List<Type>> entry :
            new HashMap<FreeTypeListener, List<Type>>(freeTypeListeners).entrySet()) {
        if (!Type.containsAny(entry.getValue(), inferencevars.diff(inferredVars))) {
            try {
                entry.getKey().typesInferred(this);
                freeTypeListeners.remove(entry.getKey());
            } catch (InferenceException ex) {
                if (thrownEx == null) {
                    thrownEx = ex;
                }
            }
        }
    }
    //inference exception multiplexing - present any inference exception
    //thrown when processing listeners as a single one
    if (thrownEx != null) {
        throw thrownEx;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:Infer.java

示例7: list

import com.sun.tools.javac.util.List; //导入依赖的package包/类
@Override
public Iterable<JavaFileObject> list(Location location,
        String packageName, Set<Kind> kinds, boolean recurse)
        throws IOException {
    // validatePackageName(packageName);
    nullCheck(packageName);
    nullCheck(kinds);

    Iterable<? extends Path> paths = getLocation(location);
    if (paths == null)
        return List.nil();
    ListBuffer<JavaFileObject> results = new ListBuffer<JavaFileObject>();

    for (Path path : paths)
        list(path, packageName, kinds, recurse, results);

    return results.toList();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:JavacPathFileManager.java

示例8: translateArgs

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/** Translate method argument list, casting each argument
 *  to its corresponding type in a list of target types.
 *  @param _args            The method argument list.
 *  @param parameters       The list of target types.
 *  @param varargsElement   The erasure of the varargs element type,
 *  or null if translating a non-varargs invocation
 */
<T extends JCTree> List<T> translateArgs(List<T> _args,
                                       List<Type> parameters,
                                       Type varargsElement) {
    if (parameters.isEmpty()) return _args;
    List<T> args = _args;
    while (parameters.tail.nonEmpty()) {
        args.head = translate(args.head, parameters.head);
        args = args.tail;
        parameters = parameters.tail;
    }
    Type parameter = parameters.head;
    Assert.check(varargsElement != null || args.length() == 1);
    if (varargsElement != null) {
        while (args.nonEmpty()) {
            args.head = translate(args.head, varargsElement);
            args = args.tail;
        }
    } else {
        args.head = translate(args.head, parameter);
    }
    return _args;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:30,代码来源:TransTypes.java

示例9: maximizeInst

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/** Instantiate undetermined type variable to its minimal upper bound.
 *  Throw a NoInstanceException if this not possible.
 */
void maximizeInst(UndetVar that, Warner warn) throws NoInstanceException {
    List<Type> hibounds = Type.filter(that.hibounds, errorFilter);
    if (that.inst == null) {
        if (hibounds.isEmpty())
            that.inst = syms.objectType;
        else if (hibounds.tail.isEmpty())
            that.inst = hibounds.head;
        else
            that.inst = types.glb(hibounds);
    }
    if (that.inst == null ||
        that.inst.isErroneous())
        throw ambiguousNoInstanceException
            .setMessage("no.unique.maximal.instance.exists",
                        that.qtype, hibounds);
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:20,代码来源:Infer.java

示例10: isFirstStatementThisOrSuperCall

import com.sun.tools.javac.util.List; //导入依赖的package包/类
private static boolean isFirstStatementThisOrSuperCall(@NotNull JCTree.JCBlock body) {
    List<JCTree.JCStatement> statements = body.getStatements();
    if (statements.isEmpty()) {
        return false;
    }
    JCTree.JCStatement expressionCandidate = statements.get(0);
    if (expressionCandidate instanceof ExpressionStatementTree) {
        ExpressionStatementTree expression = (ExpressionStatementTree) expressionCandidate;
        ExpressionTree methodInvocationCandidate = expression.getExpression();
        if (methodInvocationCandidate instanceof MethodInvocationTree) {
            MethodInvocationTree methodInvocation = (MethodInvocationTree) methodInvocationCandidate;
            ExpressionTree methodSelect = methodInvocation.getMethodSelect();
            if (methodSelect != null) {
                String select = methodSelect.toString();
                return "this".equals(select) || "super".equals(select);
            }
        }
    }
    return false;
}
 
开发者ID:denis-zhdanov,项目名称:traute,代码行数:21,代码来源:ParameterInstrumentator.java

示例11: switchBlockStatementGroups

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/** SwitchBlockStatementGroups = { SwitchBlockStatementGroup }
 *  SwitchBlockStatementGroup = SwitchLabel BlockStatements
 *  SwitchLabel = CASE ConstantExpression ":" | DEFAULT ":"
 */
List<JCCase> switchBlockStatementGroups() {
    ListBuffer<JCCase> cases = new ListBuffer<JCCase>();
    while (true) {
        int pos = token.pos;
        switch (token.kind) {
        case CASE:
        case DEFAULT:
            cases.append(switchBlockStatementGroup());
            break;
        case RBRACE: case EOF:
            return cases.toList();
        default:
            nextToken(); // to ensure progress
            syntaxError(pos, "expected3",
                CASE, DEFAULT, RBRACE);
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:JavacParser.java

示例12: implementInterfaceMethods

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/**
 * Add abstract methods for all methods defined in one of
 * the interfaces of a given class,
 * provided they are not already implemented in the class.
 *
 * @param c    The class whose interfaces are searched for methods
 *             for which Miranda methods should be added.
 * @param site The class in which a definition may be needed.
 */
void implementInterfaceMethods(ClassSymbol c, ClassSymbol site) {
    for (List<Type> l = types.interfaces(c.type); l.nonEmpty(); l = l.tail) {
        ClassSymbol i = (ClassSymbol) l.head.tsym;
        for (Scope.Entry e = i.members().elems;
             e != null;
             e = e.sibling) {
            if (e.sym.kind == MTH && (e.sym.flags() & STATIC) == 0) {
                MethodSymbol absMeth = (MethodSymbol) e.sym;
                MethodSymbol implMeth = absMeth.binaryImplementation(site, types);
                if (implMeth == null)
                    addAbstractMethod(site, absMeth);
                else if ((implMeth.flags() & IPROXY) != 0)
                    adjustAbstractMethod(site, implMeth, absMeth);
            }
        }
        implementInterfaceMethods(i, site);
    }
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:28,代码来源:Gen.java

示例13: JCMethodInvocation

import com.sun.tools.javac.util.List; //导入依赖的package包/类
protected JCMethodInvocation(List<JCExpression> typeargs,
                JCExpression meth,
                List<JCExpression> args)
{
    this.typeargs = (typeargs == null) ? List.nil()
                                       : typeargs;
    this.meth = meth;
    this.args = args;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:10,代码来源:JCTree.java

示例14: makeOwnerThisN

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/**
 * Similar to makeOwnerThis but will never pick "this".
 */
JCExpression makeOwnerThisN(DiagnosticPosition pos, Symbol sym, boolean preciseMatch) {
    Symbol c = sym.owner;
    List<VarSymbol> ots = outerThisStack;
    if (ots.isEmpty()) {
        log.error(pos, Errors.NoEnclInstanceOfTypeInScope(c));
        Assert.error();
        return makeNull();
    }
    VarSymbol ot = ots.head;
    JCExpression tree = access(make.at(pos).Ident(ot));
    TypeSymbol otc = ot.type.tsym;
    while (!(preciseMatch ? sym.isMemberOf(otc, types) : otc.isSubClass(sym.owner, types))) {
        do {
            ots = ots.tail;
            if (ots.isEmpty()) {
                log.error(pos, Errors.NoEnclInstanceOfTypeInScope(c));
                Assert.error();
                return tree;
            }
            ot = ots.head;
        } while (ot.owner != otc);
        tree = access(make.at(pos).Select(tree, ot));
        otc = ot.type.tsym;
    }
    return tree;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:30,代码来源:Lower.java

示例15: typeVarToString

import com.sun.tools.javac.util.List; //导入依赖的package包/类
/**
 * Return the string form of a type variable along with any
 * "extends" clause.  Class names are qualified if "full" is true.
 */
static String typeVarToString(DocEnv env, TypeVar v, boolean full) {
    StringBuilder s = new StringBuilder(v.toString());
    List<Type> bounds = getBounds(v, env);
    if (bounds.nonEmpty()) {
        boolean first = true;
        for (Type b : bounds) {
            s.append(first ? " extends " : " & ");
            s.append(TypeMaker.getTypeString(env, b, full));
            first = false;
        }
    }
    return s.toString();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:18,代码来源:TypeVariableImpl.java


注:本文中的com.sun.tools.javac.util.List类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。