Package com.android.dex

Examples of com.android.dex.FieldId


    this.name = name;
    this.type = type;
  }

  public static FieldInfo fromDex(DexNode dex, int index) {
    FieldId field = dex.getFieldId(index);
    return new FieldInfo(
        ClassInfo.fromDex(dex, field.getDeclaringClassIndex()),
        dex.getString(field.getNameIndex()),
        dex.getType(field.getTypeIndex()));
  }
View Full Code Here

TOP

Related Classes of com.android.dex.FieldId

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.