Package jadx.api

Examples of jadx.api.JadxDecompiler.loadFile()


  }

  public ClassNode getClassNodeFromFile(File file, String clsName) {
    JadxDecompiler d = new JadxDecompiler();
    try {
      d.loadFile(file);
    } catch (JadxException e) {
      fail(e.getMessage());
    }
    ClassNode cls = JadxInternalAccess.getRoot(d).searchClassByName(clsName);
    assertNotNull("Class not found: " + clsName, cls);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.