Package jadx.core.dex.info

Examples of jadx.core.dex.info.ClassInfo


    }
  }

  public static NClass[] makeParentsArray(ClassNode cls, Map<String, NClass> names) {
    List<NClass> parents = new ArrayList<NClass>(1 + cls.getInterfaces().size());
    ClassInfo superClass = cls.getSuperClass();
    if (superClass != null) {
      NClass c = getCls(superClass.getRawName(), names);
      if (c != null) {
        parents.add(c);
      }
    }
    for (ClassInfo iface : cls.getInterfaces()) {
View Full Code Here

TOP

Related Classes of jadx.core.dex.info.ClassInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.