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


Java Bark.instance方法代码示例

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


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

示例1: AnnotationProcessorEnvironmentImpl

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
public AnnotationProcessorEnvironmentImpl(Collection<TypeDeclaration> spectypedecls,
                                          Collection<TypeDeclaration> typedecls,
                                          Map<String, String> origOptions,
                                          Context context) {
    // Safer to copy collections before applying unmodifiable
    // wrapper.
    this.spectypedecls = Collections.unmodifiableCollection(spectypedecls);
    this.typedecls = Collections.unmodifiableCollection(typedecls);
    this.origOptions = Collections.unmodifiableMap(origOptions);

    declMaker = DeclarationMaker.instance(context);
    declUtils = DeclarationsImpl.instance(context);
    typeUtils = TypesImpl.instance(context);
    messager = MessagerImpl.instance(context);
    filer = FilerImpl.instance(context);
    bark = Bark.instance(context);
    roundCompleteListeners = new LinkedHashSet<RoundCompleteListener>();
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:19,代码来源:AnnotationProcessorEnvironmentImpl.java

示例2: FilerImpl

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
private FilerImpl(Context context) {
    context.put(filerKey, this);
    opts = Options.instance(context);
    declMaker = DeclarationMaker.instance(context);
    bark = Bark.instance(context);
    comp = com.sun.tools.apt.main.JavaCompiler.instance(context);
    roundOver = false;
    this.filesCreated = comp.getAggregateGenFiles();

    // Encoding
    encoding = opts.get("-encoding");
    if (encoding == null) {
        encoding = DEFAULT_ENCODING;
    }

    wc = new HashSet<Flushable>();

    // Locations
    locations = new EnumMap<Location, File>(Location.class);
    String s = opts.get("-s");      // location for new source files
    String d = opts.get("-d");      // location for new class files
    locations.put(SOURCE_TREE, new File(s != null ? s : "."));
    locations.put(CLASS_TREE,  new File(d != null ? d : "."));
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:25,代码来源:FilerImpl.java

示例3: FilerImpl

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
private FilerImpl(Context context) {
    context.put(filerKey, this);
    opts = Options.instance(context);
    declMaker = DeclarationMaker.instance(context);
    bark = Bark.instance(context);
    comp = com.sun.tools.apt.main.AptJavaCompiler.instance(context);
    roundOver = false;
    this.filesCreated = comp.getAggregateGenFiles();

    // Encoding
    encoding = opts.get("-encoding");
    if (encoding == null) {
        encoding = DEFAULT_ENCODING;
    }

    wc = new HashSet<Flushable>();

    // Locations
    locations = new EnumMap<Location, File>(Location.class);
    String s = opts.get("-s");      // location for new source files
    String d = opts.get("-d");      // location for new class files
    locations.put(SOURCE_TREE, new File(s != null ? s : "."));
    locations.put(CLASS_TREE,  new File(d != null ? d : "."));
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:25,代码来源:FilerImpl.java

示例4: JavaCompiler

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
/** Construct a new compiler from a shared context.
 */
public JavaCompiler(Context context) {
    super(preRegister(context));

    context.put(compilerKey, this);
    apt = Apt.instance(context);

    ClassReader classReader = ClassReader.instance(context);
    classReader.preferSource = true;

    // TEMPORARY NOTE: bark==log, but while refactoring, we maintain their
    // original identities, to remember the original intent.
    log = Log.instance(context);
    bark = Bark.instance(context);

    Options options = Options.instance(context);
    classOutput   = options.get("-retrofit")      == null;
    nocompile     = options.get("-nocompile")     != null;
    print         = options.get("-print")         != null;
    classesAsDecls= options.get("-XclassesAsDecls") != null;

    genSourceFileNames = new java.util.LinkedHashSet<String>();
    genClassFileNames  = new java.util.LinkedHashSet<String>();

    // this forces a copy of the line map to be kept in the tree,
    // for use by com.sun.mirror.util.SourcePosition.
    lineDebugInfo = true;
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:30,代码来源:JavaCompiler.java

示例5: AptJavaCompiler

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
/** Construct a new compiler from a shared context.
 */
public AptJavaCompiler(Context context) {
    super(preRegister(context));

    context.put(compilerKey, this);
    apt = Apt.instance(context);

    ClassReader classReader = ClassReader.instance(context);
    classReader.preferSource = true;

    // TEMPORARY NOTE: bark==log, but while refactoring, we maintain their
    // original identities, to remember the original intent.
    log = Log.instance(context);
    bark = Bark.instance(context);

    Options options = Options.instance(context);
    classOutput   = options.get("-retrofit")      == null;
    nocompile     = options.get("-nocompile")     != null;
    print         = options.get("-print")         != null;
    classesAsDecls= options.get("-XclassesAsDecls") != null;

    genSourceFileNames = new java.util.LinkedHashSet<String>();
    genClassFileNames  = new java.util.LinkedHashSet<String>();

    // this forces a copy of the line map to be kept in the tree,
    // for use by com.sun.mirror.util.SourcePosition.
    lineDebugInfo = true;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:30,代码来源:AptJavaCompiler.java

示例6: importStringToPattern

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
/**
 * Convert import-style string to regex matching that string.  If
 * the string is a valid import-style string, return a regex that
 * won't match anything.
 */
Pattern importStringToPattern(String s) {
    if (com.sun.tools.javac.processing.JavacProcessingEnvironment.isValidImportString(s)) {
        return com.sun.tools.javac.processing.JavacProcessingEnvironment.validImportStringToPattern(s);
    } else {
        Bark bark = Bark.instance(context);
        bark.aptWarning("MalformedSupportedString", s);
        return com.sun.tools.javac.processing.JavacProcessingEnvironment.noMatches;
    }
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:15,代码来源:Apt.java

示例7: MessagerImpl

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
private MessagerImpl(Context context) {
    context.put(messagerKey, this);
    bark = Bark.instance(context);
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:5,代码来源:MessagerImpl.java

示例8: importStringToPattern

import com.sun.tools.apt.util.Bark; //导入方法依赖的package包/类
/**
 * Convert import-style string to regex matching that string.  If
 * the string is a valid import-style string, return a regex that
 * won't match anything.
 */
Pattern importStringToPattern(String s) {
    if (s.equals("*")) {
        return allMatches;
    } else {
        String t = s;
        boolean star = false;

        /*
         * Validate string from factory is legal.  If the string
         * has more than one asterisks or the asterisks does not
         * appear as the last character (preceded by a period),
         * the string is not legal.
         */

        boolean valid = true;
        int index = t.indexOf('*');
        if (index != -1) {
            // '*' must be last character...
            if (index == t.length() -1) {
                 // ... and preceeding character must be '.'
                if ( index-1 >= 0 ) {
                    valid = t.charAt(index-1) == '.';
                    // Strip off ".*$" for identifier checks
                    t = t.substring(0, t.length()-2);
                }
            } else
                valid = false;
        }

        // Verify string is off the form (javaId \.)+ or javaId
        if (valid) {
            String[] javaIds = t.split("\\.", t.length()+2);
            for(String javaId: javaIds)
                valid &= isJavaIdentifier(javaId);
        }

        if (!valid) {
            Bark bark = Bark.instance(context);
            bark.aptWarning("MalformedSupportedString", s);
            return noMatches; // won't match any valid identifier
        }

        String s_prime = s.replaceAll("\\.", "\\\\.");

        if (s_prime.endsWith("*")) {
            s_prime =  s_prime.substring(0, s_prime.length() - 1) + ".+";
        }

        return Pattern.compile(s_prime);
    }
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:57,代码来源:Apt.java


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