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


Java AnnotationEncodedSubValue类代码示例

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


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

示例1: AnnotationItem

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
/**
 * Creates a new <code>AnnotationItem</code> with the given values
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param visibility The visibility of this annotation
 * @param annotationValue The value of this annotation
 */
private AnnotationItem(DexFile dexFile, AnnotationVisibility visibility,
                       AnnotationEncodedSubValue annotationValue) {
    super(dexFile);
    this.visibility = visibility;
    this.annotationValue = annotationValue;
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:13,代码来源:AnnotationItem.java

示例2: writeTo

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
public static void writeTo(IndentingWriter writer, AnnotationEncodedSubValue encodedAnnotation)
                           throws IOException {
    writer.write(".subannotation ");
    ReferenceFormatter.writeTypeReference(writer, encodedAnnotation.annotationType);
    writer.write('\n');

    writeElementsTo(writer, encodedAnnotation);
    writer.write(".end subannotation");
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:10,代码来源:AnnotationEncodedValueAdaptor.java

示例3: writeElementsTo

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
public static void writeElementsTo(IndentingWriter writer, AnnotationEncodedSubValue encodedAnnotation)
                            throws IOException {
    writer.indent(4);
    for (int i=0; i<encodedAnnotation.names.length; i++) {
        writer.write(encodedAnnotation.names[i].getStringValue());
        writer.write(" = ");

        EncodedValueAdaptor.writeTo(writer, encodedAnnotation.values[i]);
        writer.write('\n');
    }
    writer.deindent(4);
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:13,代码来源:AnnotationEncodedValueAdaptor.java

示例4: readItem

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
/** {@inheritDoc} */
protected void readItem(Input in, ReadContext readContext) {
    visibility = AnnotationVisibility.fromByte(in.readByte());
    annotationValue = new AnnotationEncodedSubValue(dexFile, in);
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:6,代码来源:AnnotationItem.java

示例5: getEncodedAnnotation

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
/**
 * @return The encoded annotation value of this annotation
 */
public AnnotationEncodedSubValue getEncodedAnnotation() {
    return annotationValue;
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:7,代码来源:AnnotationItem.java

示例6: internAnnotationItem

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
/**
 * Returns an <code>AnnotationItem</code> for the given values, and that has been interned into the given
 * <code>DexFile</code>
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param visibility The visibility of this annotation
 * @param annotationValue The value of this annotation
 * @return an <code>AnnotationItem</code> for the given values, and that has been interned into the given
 * <code>DexFile</code>
 */
public static AnnotationItem internAnnotationItem(DexFile dexFile, AnnotationVisibility visibility,
                       AnnotationEncodedSubValue annotationValue) {
    AnnotationItem annotationItem = new AnnotationItem(dexFile, visibility, annotationValue);
    return dexFile.AnnotationsSection.intern(annotationItem);
}
 
开发者ID:DocGerd,项目名称:DalvikSSA,代码行数:15,代码来源:AnnotationItem.java

示例7: getInternedAnnotationItem

import org.jf.dexlib.EncodedValue.AnnotationEncodedSubValue; //导入依赖的package包/类
/**
 * Returns an <code>AnnotationItem</code> for the given values, and that has been interned into the given
 * <code>DexFile</code>
 * @param dexFile The <code>DexFile</code> that this item belongs to
 * @param visibility The visibility of this annotation
 * @param annotationValue The value of this annotation
 * @return an <code>AnnotationItem</code> for the given values, and that has been interned into the given
 * <code>DexFile</code>
 */
public static AnnotationItem getInternedAnnotationItem(DexFile dexFile, AnnotationVisibility visibility,
                       AnnotationEncodedSubValue annotationValue) {
    AnnotationItem annotationItem = new AnnotationItem(dexFile, visibility, annotationValue);
    return dexFile.AnnotationsSection.intern(annotationItem);
}
 
开发者ID:Sukelluskello,项目名称:VectorAttackScanner,代码行数:15,代码来源:AnnotationItem.java


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