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


Java Annotation.element_value方法代码示例

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


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

示例1: visitArray

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
@Override
public Element visitArray(Array_element_value a, Element p) {
    Element el = new Element("Array");
    for (Annotation.element_value v : a.values) {
       Element child = visit(v, el);
       if (child != null) {
           el.add(child);
       }
    }
    el.trimToSize();
    return el;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:13,代码来源:ClassReader.java

示例2: testElementValue

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
@Override
public void testElementValue(TestResult testResult,
                             ClassFile classFile,
                             Annotation.element_value element_value)
        throws ConstantPoolException {
    testTag(testResult, element_value.tag);
    Annotation.Primitive_element_value ev =
            (Annotation.Primitive_element_value) element_value;
    ConstantPool.CONSTANT_Utf8_info info =
            (ConstantPool.CONSTANT_Utf8_info) classFile.constant_pool.get(ev.const_value_index);
    testResult.checkEquals(info.value, value, "const_value_index");
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:13,代码来源:TestAnnotationInfo.java

示例3: testElementValue

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
@Override
public void testElementValue(
        TestResult testCase,
        ClassFile classFile,
        Annotation.element_value element_value,
        String[] values) throws ConstantPool.InvalidIndex {
    Annotation.Primitive_element_value ev =
            (Annotation.Primitive_element_value) element_value;
    ConstantPool.CONSTANT_Long_info info =
            (ConstantPool.CONSTANT_Long_info)
                    classFile.constant_pool.get(ev.const_value_index);
    testCase.checkEquals(info.value, Long.parseLong(values[0]), "const_value_index");
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:14,代码来源:AnnotationDefaultVerifier.java

示例4: visitArray

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
@Override
public Element visitArray(Array_element_value a, Element p) {
 Element el = new Element("Array");
    for (Annotation.element_value v : a.values) {
       Element child = visit(v, el);
       if (child != null) {
           el.add(child);
       }
    }
    el.trimToSize();
    return el;
}
 
开发者ID:ojdkbuild,项目名称:lookaside_java-1.8.0-openjdk,代码行数:13,代码来源:ClassReader.java

示例5: testElementValue

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
@Override
public void testElementValue(
        TestResult testResult,
        ClassFile classFile,
        Annotation.element_value element_value)
        throws ConstantPoolException {
    testTag(testResult, element_value.tag);
    Annotation.Class_element_value ev = (Annotation.Class_element_value) element_value;
    String expectedClassName = className.replace(".class", "");
    expectedClassName = mappedClassName.getOrDefault(expectedClassName,
            String.format("Ljava/lang/%s;", expectedClassName));
    testResult.checkEquals(
            classFile.constant_pool.getUTF8Info(ev.class_info_index).value,
            expectedClassName, "class_info_index : " + expectedClassName);
}
 
开发者ID:campolake,项目名称:openjdk9,代码行数:16,代码来源:TestAnnotationInfo.java

示例6: write

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value) {
    write(value, false);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:AnnotationWriter.java

示例7: visit

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public Element visit(Annotation.element_value v, Element p) {
    return v.accept(this, p);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:4,代码来源:ClassReader.java

示例8: write

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value, boolean resolveIndices) {
    ev_writer.write(value, resolveIndices);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:4,代码来源:AnnotationWriter.java

示例9: write

import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value, boolean resolveIndices) {
    value.accept(this, resolveIndices);
}
 
开发者ID:ojdkbuild,项目名称:lookaside_java-1.8.0-openjdk,代码行数:4,代码来源:AnnotationWriter.java


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