Methods Summary |
---|
public boolean | equals(java.lang.Object other){@inheritDoc}
if (!(other instanceof ReturnAddress)) {
return false;
}
return subroutineAddress == ((ReturnAddress) other).subroutineAddress;
|
public int | getBasicFrameType(){@inheritDoc}
return Type.RETURN_ADDRESS.getBasicFrameType();
|
public int | getBasicType(){@inheritDoc}
return Type.RETURN_ADDRESS.getBasicType();
|
public com.android.dx.rop.type.TypeBearer | getFrameType(){@inheritDoc}
return this;
|
public int | getSubroutineAddress()Gets the subroutine address.
return subroutineAddress;
|
public com.android.dx.rop.type.Type | getType(){@inheritDoc}
return Type.RETURN_ADDRESS;
|
public int | hashCode(){@inheritDoc}
return subroutineAddress;
|
public boolean | isConstant(){@inheritDoc}
return false;
|
public java.lang.String | toHuman(){@inheritDoc}
return toString();
|
public java.lang.String | toString(){@inheritDoc}
return ("<addr:" + Hex.u2(subroutineAddress) + ">");
|