Package com.android.dex

Examples of com.android.dex.MethodId


  private final List<ArgType> args;
  private final ClassInfo declClass;
  private final String shortId;

  private MethodInfo(DexNode dex, int mthIndex) {
    MethodId mthId = dex.getMethodId(mthIndex);
    name = dex.getString(mthId.getNameIndex());
    declClass = ClassInfo.fromDex(dex, mthId.getDeclaringClassIndex());

    ProtoId proto = dex.getProtoId(mthId.getProtoIndex());
    retType = dex.getType(proto.getReturnTypeIndex());
    args = dex.readParamList(proto.getParametersOffset());

    StringBuilder signature = new StringBuilder();
    signature.append(name);
View Full Code Here

TOP

Related Classes of com.android.dex.MethodId

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.