Package com.litecoding.smali2java.entity.smali

Examples of com.litecoding.smali2java.entity.smali.FieldRef


      String dstType = "(UNKNOWN)";
      OpcodeData opcodeData = instruction.getOpcodeData();
      if(opcodeData.getType() == OpcodeData.TYPE_GET) {
        //TODO: handle aget*
        List<SmaliCodeEntity> args = instruction.getArguments();
        FieldRef srcField = (FieldRef) args.get(args.size() - 1);
        dstType = srcField.getType();
      } else if(opcodeData.getType() == OpcodeData.TYPE_CONST) {
        if(opcodeData.getOpcode() == Opcodes.OP_CONST_STRING)
          dstType = "Ljava/lang/String;";
        else
          dstType = "(BY CONST)";
View Full Code Here

TOP

Related Classes of com.litecoding.smali2java.entity.smali.FieldRef

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.