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


Java ListBuffer.lb方法代码示例

本文整理汇总了Java中com.sun.tools.javac.util.ListBuffer.lb方法的典型用法代码示例。如果您正苦于以下问题:Java ListBuffer.lb方法的具体用法?Java ListBuffer.lb怎么用?Java ListBuffer.lb使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.tools.javac.util.ListBuffer的用法示例。


在下文中一共展示了ListBuffer.lb方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: filter

import com.sun.tools.javac.util.ListBuffer; //导入方法依赖的package包/类
public static List<Type> filter(List<Type> ts, Filter<Type> tf) {
    ListBuffer<Type> buf = ListBuffer.lb();
    for (Type t : ts) {
        if (tf.accepts(t)) {
            buf.append(t);
        }
    }
    return buf.toList();
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:10,代码来源:Type.java

示例2: visitTypes

import com.sun.tools.javac.util.ListBuffer; //导入方法依赖的package包/类
/**
 * Get a localized string representation for all the types in the input list.
 *
 * @param ts types to be displayed
 * @param locale the locale in which the string is to be rendered
 * @return localized string representation
 */
public String visitTypes(List<Type> ts, Locale locale) {
    ListBuffer<String> sbuf = ListBuffer.lb();
    for (Type t : ts) {
        sbuf.append(visit(t, locale));
    }
    return sbuf.toList().toString();
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:15,代码来源:Printer.java

示例3: visitSymbols

import com.sun.tools.javac.util.ListBuffer; //导入方法依赖的package包/类
/**
 * * Get a localized string representation for all the symbols in the input list.
 *
 * @param ts symbols to be displayed
 * @param locale the locale in which the string is to be rendered
 * @return localized string representation
 */
public String visitSymbols(List<Symbol> ts, Locale locale) {
    ListBuffer<String> sbuf = ListBuffer.lb();
    for (Symbol t : ts) {
        sbuf.append(visit(t, locale));
    }
    return sbuf.toList().toString();
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:15,代码来源:Printer.java

示例4: stopIfError

import com.sun.tools.javac.util.ListBuffer; //导入方法依赖的package包/类
protected final <T> Queue<T> stopIfError(CompileState cs, Queue<T> queue) {
    return shouldStop(cs) ? ListBuffer.<T>lb() : queue;
}
 
开发者ID:tranleduy2000,项目名称:javaide,代码行数:4,代码来源:JavaCompiler.java


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