public class

ParametersInfo

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.core.units.code.android.ParametersInfo

Class Overview

Dalvik method parameters-to-registers mapping information.

Summary

Public Constructors
ParametersInfo(int regcnt, List<Integer> paramindexes)
Public Methods
boolean equals(Object obj)
int getParameterCount()
int getParameterIndex(int index)
List<Integer> getParameterIndices()
Indices of registers holding parameter values.
int getRegisterCount()
Number of registers used to hold all method parameters (including `this` if the method is not static).
int hashCode()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ParametersInfo (int regcnt, List<Integer> paramindexes)

Parameters
regcnt number of registers used to hold all method parameters (including `this` if the method is not static).
paramindexes indices of registers holding parameter values (the register index for `this` should not be included)

Public Methods

public boolean equals (Object obj)

public int getParameterCount ()

public int getParameterIndex (int index)

public List<Integer> getParameterIndices ()

Indices of registers holding parameter values. The register index for `this` is not included!

public int getRegisterCount ()

Number of registers used to hold all method parameters (including `this` if the method is not static).

public int hashCode ()