Package com.android.dx.io.instructions
Class AddressMap
java.lang.Object
com.android.dx.io.instructions.AddressMap
Map from addresses to addresses, where addresses are all
int
s.-
Constructor Summary
-
Method Summary
-
Constructor Details
-
AddressMap
public AddressMap()Constructs an instance.
-
-
Method Details
-
get
public int get(int keyAddress) Gets the value address corresponding to the given key address. Returns-1
if there is no mapping. -
put
public void put(int keyAddress, int valueAddress) Sets the value address associated with the given key address.
-