本文整理汇总了Java中org.jf.dexlib2.base.BaseAnnotationElement类的典型用法代码示例。如果您正苦于以下问题:Java BaseAnnotationElement类的具体用法?Java BaseAnnotationElement怎么用?Java BaseAnnotationElement使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BaseAnnotationElement类属于org.jf.dexlib2.base包,在下文中一共展示了BaseAnnotationElement类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: writeAnnotations
import org.jf.dexlib2.base.BaseAnnotationElement; //导入依赖的package包/类
private void writeAnnotations(@Nonnull DexDataWriter writer) throws IOException {
InternalEncodedValueWriter encodedValueWriter = new InternalEncodedValueWriter(writer);
annotationSectionOffset = writer.getPosition();
for (Entry<? extends AnnotationKey, Integer> entry: annotationSection.getItems()) {
entry.setValue(writer.getPosition());
AnnotationKey key = entry.getKey();
writer.writeUbyte(annotationSection.getVisibility(key));
writer.writeUleb128(typeSection.getItemIndex(annotationSection.getType(key)));
Collection<? extends AnnotationElement> elements = Ordering.from(BaseAnnotationElement.BY_NAME)
.immutableSortedCopy(annotationSection.getElements(key));
writer.writeUleb128(elements.size());
for (AnnotationElement element: elements) {
writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
writeEncodedValue(encodedValueWriter, annotationSection.getElementValue(element));
}
}
}
开发者ID:CvvT,项目名称:andbg,代码行数:24,代码来源:DexWriter.java
示例2: writeAnnotations
import org.jf.dexlib2.base.BaseAnnotationElement; //导入依赖的package包/类
private void writeAnnotations( DexDataWriter writer) throws IOException {
InternalEncodedValueWriter encodedValueWriter = new InternalEncodedValueWriter(writer);
annotationSectionOffset = writer.getPosition();
for (Entry<? extends AnnotationKey, Integer> entry: annotationSection.getItems()) {
entry.setValue(writer.getPosition());
AnnotationKey key = entry.getKey();
writer.writeUbyte(annotationSection.getVisibility(key));
writer.writeUleb128(typeSection.getItemIndex(annotationSection.getType(key)));
Collection<? extends AnnotationElement> elements = Ordering.from(BaseAnnotationElement.BY_NAME)
.immutableSortedCopy(annotationSection.getElements(key));
writer.writeUleb128(elements.size());
for (AnnotationElement element: elements) {
writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
writeEncodedValue(encodedValueWriter, annotationSection.getElementValue(element));
}
}
}
开发者ID:AndreJCL,项目名称:JCL,代码行数:24,代码来源:DexWriter.java
示例3: writeAnnotations
import org.jf.dexlib2.base.BaseAnnotationElement; //导入依赖的package包/类
private void writeAnnotations(@Nonnull DexDataWriter writer) throws IOException {
InternalEncodedValueWriter encodedValueWriter = new InternalEncodedValueWriter(writer);
annotationSectionOffset = writer.getPosition();
for (Map.Entry<? extends AnnotationKey, Integer> entry: annotationSection.getItems()) {
entry.setValue(writer.getPosition());
AnnotationKey key = entry.getKey();
writer.writeUbyte(annotationSection.getVisibility(key));
writer.writeUleb128(typeSection.getItemIndex(annotationSection.getType(key)));
Collection<? extends AnnotationElement> elements = Ordering.from(BaseAnnotationElement.BY_NAME)
.immutableSortedCopy(annotationSection.getElements(key));
writer.writeUleb128(elements.size());
for (AnnotationElement element: elements) {
writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
writeEncodedValue(encodedValueWriter, annotationSection.getElementValue(element));
}
}
}
开发者ID:CvvT,项目名称:DexTamper,代码行数:24,代码来源:DexWriter.java
示例4: MethodReplaceAnnotation
import org.jf.dexlib2.base.BaseAnnotationElement; //导入依赖的package包/类
public MethodReplaceAnnotation(final String clazz, final String method) {
BaseAnnotationElement clazzElement = new BaseAnnotationElement() {
@Override
public EncodedValue getValue() {
String name = clazz.substring(1, clazz.length() - 1).replace('/', '.');
return new ImmutableStringEncodedValue(name);
}
@Override
public String getName() {
// TODO Auto-generated method stub
return "clazz";
}
};
mElements.add(clazzElement);
BaseAnnotationElement methodElement = new BaseAnnotationElement() {
@Override
public EncodedValue getValue() {
return new ImmutableStringEncodedValue(method);
}
@Override
public String getName() {
// TODO Auto-generated method stub
return "method";
}
};
mElements.add(methodElement);
}
开发者ID:alibaba,项目名称:atlas,代码行数:33,代码来源:MethodReplaceAnnotation.java
示例5: writeAnnotation
import org.jf.dexlib2.base.BaseAnnotationElement; //导入依赖的package包/类
public void writeAnnotation(TypeKey annotationType,
Collection<? extends AnnotationElement> elements) throws IOException {
writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0);
writer.writeUleb128(typeSection.getItemIndex(annotationType));
writer.writeUleb128(elements.size());
Collection<? extends AnnotationElement> sortedElements = Ordering.from(BaseAnnotationElement.BY_NAME)
.immutableSortedCopy(elements);
for (AnnotationElement element: sortedElements) {
writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
writeEncodedValue(annotationSection.getElementValue(element));
}
}
开发者ID:CvvT,项目名称:andbg,代码行数:15,代码来源:EncodedValueWriter.java
注:本文中的org.jf.dexlib2.base.BaseAnnotationElement类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论