Package org.apache.bcel.generic
Class ReturnaddressType
- java.lang.Object
-
- org.apache.bcel.generic.Type
-
- org.apache.bcel.generic.ReturnaddressType
-
- All Implemented Interfaces:
java.io.Serializable
public class ReturnaddressType extends Type
Returnaddress, the type JSR or JSR_W instructions push upon the stack. see vmspec2 §3.3.3- Version:
- $Id: ReturnaddressType.java 386056 2006-03-15 11:31:56Z tcurdt $
- Author:
- Enver Haase
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReturnaddressType(InstructionHandle returnTarget)
Creates a ReturnaddressType object with a target.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object rat)
Returns if the two Returnaddresses refer to the same target.InstructionHandle
getTarget()
int
hashCode()
-
Methods inherited from class org.apache.bcel.generic.Type
getArgumentTypes, getMethodSignature, getReturnType, getSignature, getSignature, getSize, getType, getType, getType, getTypes, toString
-
-
-
-
Field Detail
-
NO_TARGET
public static final ReturnaddressType NO_TARGET
-
-
Constructor Detail
-
ReturnaddressType
public ReturnaddressType(InstructionHandle returnTarget)
Creates a ReturnaddressType object with a target.
-
-
Method Detail
-
hashCode
public int hashCode()
-
equals
public boolean equals(java.lang.Object rat)
Returns if the two Returnaddresses refer to the same target.
-
getTarget
public InstructionHandle getTarget()
- Returns:
- the target of this ReturnaddressType
-
-