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


Java ClassDef.getInterfaces方法代码示例

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


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

示例1: of

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static ImmutableClassDef of(ClassDef classDef) {
    if (classDef instanceof ImmutableClassDef) {
        return (ImmutableClassDef)classDef;
    }
    return new ImmutableClassDef(
            classDef.getType(),
            classDef.getAccessFlags(),
            classDef.getSuperclass(),
            classDef.getInterfaces(),
            classDef.getSourceFile(),
            classDef.getAnnotations(),
            classDef.getStaticFields(),
            classDef.getInstanceFields(),
            classDef.getDirectMethods(),
            classDef.getVirtualMethods());
}
 
开发者ID:CvvT,项目名称:andbg,代码行数:17,代码来源:ImmutableClassDef.java

示例2: onSimpleAdd

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleAdd(ClassDef patch, PatcherAnnotation annotation) {

	// Avoid creating a new object if not necessary.
	if (patch.getAnnotations() == annotation.getFilteredAnnotations()) {
		return patch;
	}

	return new BasicClassDef(
			patch.getType(),
			patch.getAccessFlags(),
			patch.getSuperclass(),
			patch.getInterfaces(),
			patch.getSourceFile(),
			annotation.getFilteredAnnotations(),
			patch.getStaticFields(),
			patch.getInstanceFields(),
			patch.getDirectMethods(),
			patch.getVirtualMethods());

}
 
开发者ID:DexPatcher,项目名称:dexpatcher-tool,代码行数:22,代码来源:ClassSetPatcher.java

示例3: of

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static ImmutableClassDef of(ClassDef classDef) {
    if (classDef instanceof ImmutableClassDef) {
        return (ImmutableClassDef) classDef;
    }
    return new ImmutableClassDef(
            classDef.getType(),
            classDef.getAccessFlags(),
            classDef.getSuperclass(),
            classDef.getInterfaces(),
            classDef.getSourceFile(),
            classDef.getAnnotations(),
            classDef.getStaticFields(),
            classDef.getInstanceFields(),
            classDef.getDirectMethods(),
            classDef.getVirtualMethods());
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:17,代码来源:ImmutableClassDef.java

示例4: onSimpleEdit

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleEdit(ClassDef patch, PatcherAnnotation annotation, ClassDef target, boolean inPlace) {

	ClassDef source;
	Set<? extends Annotation> annotations;
	if (annotation.getContentOnly()) {
		source = target;
		annotations = target.getAnnotations();
		if (!inPlace) patch = renameClass(patch, target.getType());
	} else {
		// Log class access flags before processing members.
		super.onSimpleEdit(patch, annotation, target, inPlace);
		source = patch;
		annotations = annotation.getFilteredAnnotations();
		if (!inPlace) target = renameClass(target, patch.getType());
	}

	return new BasicClassDef(
			source.getType(),
			source.getAccessFlags(),
			source.getSuperclass(),
			source.getInterfaces(),
			source.getSourceFile(),
			annotations,
			Collections.unmodifiableCollection(new FieldSetPatcher(this, annotation)
					.process(target.getFields(), patch.getFields())),
			Collections.unmodifiableCollection(new MethodSetPatcher(this, annotation)
					.process(target.getMethods(), patch.getMethods())));

}
 
开发者ID:DexPatcher,项目名称:dexpatcher-tool,代码行数:31,代码来源:ClassSetPatcher.java

示例5: onSimpleReplace

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleReplace(ClassDef patch, PatcherAnnotation annotation, ClassDef target, boolean inPlace) {

	ClassDef source;
	Set<? extends Annotation> annotations;
	if (annotation.getContentOnly()) {
		source = target;
		annotations = target.getAnnotations();
		if (!inPlace) patch = renameClass(patch, target.getType());
	} else {
		source = patch;
		annotations = annotation.getFilteredAnnotations();
		//if (!inPlace) target = renameClass(target, patch.getType());
	}

	return new BasicClassDef(
			source.getType(),
			source.getAccessFlags(),
			source.getSuperclass(),
			source.getInterfaces(),
			source.getSourceFile(),
			annotations,
			patch.getStaticFields(),
			patch.getInstanceFields(),
			patch.getDirectMethods(),
			patch.getVirtualMethods());

}
 
开发者ID:DexPatcher,项目名称:dexpatcher-tool,代码行数:29,代码来源:ClassSetPatcher.java

示例6: 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);
}
 
开发者ID:packmad,项目名称:RmPerm,代码行数:36,代码来源:BytecodeCustomizer.java

示例7: 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);
        }
 
开发者ID:alibaba,项目名称:atlas,代码行数:47,代码来源:AbIClassDef.java


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