本文整理汇总了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;
}
示例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");
}
示例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");
}
示例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;
}
示例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);
}
示例6: write
import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value) {
write(value, false);
}
示例7: visit
import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public Element visit(Annotation.element_value v, Element p) {
return v.accept(this, p);
}
示例8: write
import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value, boolean resolveIndices) {
ev_writer.write(value, resolveIndices);
}
示例9: write
import com.sun.tools.classfile.Annotation; //导入方法依赖的package包/类
public void write(Annotation.element_value value, boolean resolveIndices) {
value.accept(this, resolveIndices);
}