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


Java ClassDef.getType方法代码示例

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


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

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
private static ClassDef renameClass(ClassDef classDef, final String to) {

		final String from = classDef.getType();

		DexRewriter rewriter = new DexRewriter(new RewriterModule() {
			@Override
			public Rewriter<String> getTypeRewriter(Rewriters rewriters) {
				return new Rewriter<String>() {

					@Override
					public String rewrite(String value) {
						return from.equals(value) ? to : value;
					}

				};
			}
		});

		return rewriter.getClassDefRewriter().rewrite(classDef);

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

示例4: 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

示例5: 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

示例6: 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

示例7: getDexClasses

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
private Set<String> getDexClasses()
{	
		Set<String> dexClasses = new HashSet<String>();
		
		try {
			DexFile dexFile = DexFileFactory.loadDexFile(new File(apk.getAbsolutePath()), targetSdkVersion());
			for (ClassDef classDef: dexFile.getClasses()) 
			{
				String cls = classDef.getType();
				if (cls.contains("$"))
				{
					//do not consider sub-classes
					continue;
				}
				
				cls = cls.replace("/", ".").substring(1, cls.length()-1);
				
				dexClasses.add(cls);
			}
		} 
		catch (IOException e) 
		{
			e.printStackTrace();
		}
		
		return dexClasses;
 	}
 
开发者ID:serval-snt-uni-lu,项目名称:DroidRA,代码行数:28,代码来源:ProcessManifest.java

示例8: 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

示例9: getClassDefByName

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static ClassDef getClassDefByName(String className, DexFile dexFile)
        throws Exception {
    ClassDef result = null;
    String dexName;

    for (ClassDef currentClassDef : dexFile.getClasses()) {
        dexName = currentClassDef.getType();
        if (isMatchFromDex(className, dexName)) {
            result = currentClassDef;
            break;
        }
    }

    return result;
}
 
开发者ID:google,项目名称:android-classyshark,代码行数:16,代码来源:DexlibAdapter.java

示例10: handleDexPoolOverflow

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
private static void handleDexPoolOverflow(ClassDef classDef, int classCount, int minClassCount) {
	if (classCount < minClassCount) throw new DexPoolOverflowException(
			"Dex pool overflowed while writing type " + (classCount + 1) + " of " + minClassCount);
	if (classCount == 0) throw new DexPoolOverflowException(
			"Type too big for dex pool: " + classDef.getType());
}
 
开发者ID:DexPatcher,项目名称:multidexlib2,代码行数:7,代码来源:DexIO.java

示例11: 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

示例12: getSyntheticAccessors

import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public List<String> getSyntheticAccessors() {

        LinkedList<String> result = new LinkedList<>();

        Set<? extends ClassDef> allClasses = dxFile.getClasses();

        for (ClassDef classDef : allClasses) {


            Iterator<? extends Method> allMethodsIter = classDef.getMethods().iterator();

            while (allMethodsIter.hasNext()) {

                Method element = allMethodsIter.next();

                String name = element.getName();

                String nClassName = classDef.getType();

                if (name.contains("access$")) {

                    String cleanClassName = DexlibAdapter.getClassStringFromDex(nClassName);

                    if (!result.contains(cleanClassName)) {
                        result.add(cleanClassName);
                    }
                }
            }
        }

        return result;
    }
 
开发者ID:google,项目名称:android-classyshark,代码行数:33,代码来源:SyntheticAccessorsInspector.java


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