本文整理汇总了Java中org.jf.dexlib2.iface.ClassDef.getFields方法的典型用法代码示例。如果您正苦于以下问题:Java ClassDef.getFields方法的具体用法?Java ClassDef.getFields怎么用?Java ClassDef.getFields使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jf.dexlib2.iface.ClassDef
的用法示例。
在下文中一共展示了ClassDef.getFields方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: read
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public Field read(String className,String member) throws Exception {
if (reader == null){
return null;
}
classDef = (ClassDef) reader.read(className,null);
Iterable<? extends Field> fields = classDef.getFields();
for (Field field:fields){
if (field.getName().equals(member)){
return field;
}
}
return null;
}
示例2: customizeClass
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
private ClassDef customizeClass(ClassDef classDef) {
List<Method> methods = new ArrayList<>();
boolean modifiedMethod = false;
for (Method method : classDef.getMethods()) {
MethodImplementation implementation = method.getImplementation();
if (implementation == null) {
methods.add(method);
continue;
}
MethodImplementation customImpl = searchAndReplaceInvocations(implementation);
if (customImpl==implementation) {
methods.add(method);
continue;
}
modifiedMethod = true;
final ImmutableMethod newMethod = new ImmutableMethod(method.getDefiningClass(),
method.getName(),
method.getParameters(),
method.getReturnType(),
method.getAccessFlags(),
method.getAnnotations(),
customImpl);
methods.add(newMethod);
}
if (!modifiedMethod)
return classDef;
return new ImmutableClassDef(classDef.getType(),
classDef.getAccessFlags(),
classDef.getSuperclass(),
classDef.getInterfaces(),
classDef.getSourceFile(),
classDef.getAnnotations(),
classDef.getFields(),
methods);
}
示例3: reClassDef
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
public ClassDef reClassDef(ClassDef classDef) {
Iterable<? extends Method> methods = classDef.getMethods();
LinkedHashSet<Method> newMethods = new LinkedHashSet<Method>();
Iterable<? extends Field> fields = classDef.getFields();
LinkedHashSet<Field>newFields = new LinkedHashSet<Field>();
Set<? extends Annotation> annotations = classDef.getAnnotations();
Set<String>interfaces = classDef.getInterfaces();
Set<String>newInterfaces = new HashSet<String>();
Set<Annotation>immutableAnnotations = new HashSet<Annotation>();
String type = classDef.getType();
reType = reType(type);
String superClass = classDef.getSuperclass();
for (String inter:interfaces){
newInterfaces.add(reInterface(inter));
}
String reSuperClass = reSuperClass(superClass);
for (Annotation annotation:annotations){
immutableAnnotations.add(reAnnotation(annotation));
}
for (Field field:fields){
newFields.add(reField(field));
}
for (Method method:methods){
if (method.getName().equals("<cinit>")||method.getName().equals("<init>")){
newMethods.add(reMethod(method));
continue;
}
// if (method.getName().equals("getArchiveFile")) {
newMethods.add(reMethod(method));
// }
}
return new ImmutableClassDef(
reType,
classDef.getAccessFlags(),
reSuperClass,
newInterfaces,
classDef.getSourceFile(),
immutableAnnotations,
newFields,
newMethods);
}