Package org.springframework.asm
Class Handle
java.lang.Object
org.springframework.asm.Handle
A reference to a field or a method.
- Author:
- Remi Forax, Eric Bruneton
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getDesc()
Returns the descriptor of the field or method designated by this handle.getName()
Returns the name of the field or method designated by this handle.getOwner()
Returns the internal name of the class that owns the field or method designated by this handle.int
getTag()
Returns the kind of field or method designated by this handle.int
hashCode()
boolean
Returns true if the owner of the field or method designated by this handle is an interface.toString()
Returns the textual representation of this handle.
-
Constructor Details
-
Handle
Deprecated.this constructor has been superseded byHandle(int, String, String, String, boolean)
.Constructs a new field or method handle.- Parameters:
tag
- the kind of field or method designated by this Handle. Must beOpcodes.H_GETFIELD
,Opcodes.H_GETSTATIC
,Opcodes.H_PUTFIELD
,Opcodes.H_PUTSTATIC
,Opcodes.H_INVOKEVIRTUAL
,Opcodes.H_INVOKESTATIC
,Opcodes.H_INVOKESPECIAL
,Opcodes.H_NEWINVOKESPECIAL
orOpcodes.H_INVOKEINTERFACE
.owner
- the internal name of the class that owns the field or method designated by this handle (seeType.getInternalName()
).name
- the name of the field or method designated by this handle.descriptor
- the descriptor of the field or method designated by this handle.
-
Handle
Constructs a new field or method handle.- Parameters:
tag
- the kind of field or method designated by this Handle. Must beOpcodes.H_GETFIELD
,Opcodes.H_GETSTATIC
,Opcodes.H_PUTFIELD
,Opcodes.H_PUTSTATIC
,Opcodes.H_INVOKEVIRTUAL
,Opcodes.H_INVOKESTATIC
,Opcodes.H_INVOKESPECIAL
,Opcodes.H_NEWINVOKESPECIAL
orOpcodes.H_INVOKEINTERFACE
.owner
- the internal name of the class that owns the field or method designated by this handle (seeType.getInternalName()
).name
- the name of the field or method designated by this handle.descriptor
- the descriptor of the field or method designated by this handle.isInterface
- whether the owner is an interface or not.
-
-
Method Details
-
getTag
public int getTag()Returns the kind of field or method designated by this handle. -
getOwner
Returns the internal name of the class that owns the field or method designated by this handle.- Returns:
- the internal name of the class that owns the field or method designated by this handle
(see
Type.getInternalName()
).
-
getName
Returns the name of the field or method designated by this handle.- Returns:
- the name of the field or method designated by this handle.
-
getDesc
Returns the descriptor of the field or method designated by this handle.- Returns:
- the descriptor of the field or method designated by this handle.
-
isInterface
public boolean isInterface()Returns true if the owner of the field or method designated by this handle is an interface.- Returns:
- true if the owner of the field or method designated by this handle is an interface.
-
equals
-
hashCode
public int hashCode() -
toString
Returns the textual representation of this handle. The textual representation is:- for a reference to a class: owner "." name descriptor " (" tag ")",
- for a reference to an interface: owner "." name descriptor " (" tag " itf)".
-
Handle(int, String, String, String, boolean)
.