com.ibm.dtfj.java
Interface JavaMethod
All Superinterfaces:
- public interface JavaMethod
- extends JavaMember
Method Summary
Modifier and Type | Method and Description |
---|---|
|
equals(java.lang.Object obj)
|
|
getBytecodeSections()
Get the set of ImageSections containing the bytecode of this method.
|
|
getCompiledSections()
Get the set of ImageSections containing the compiled code of this method.
|
|
hashCode()
|
Methods inherited from interface com.ibm.dtfj.java.JavaMember |
---|
getDeclaringClass, getModifiers, getName, getSignature |
Method Detail
getBytecodeSections
- java.util.Iterator getBytecodeSections( )
Get the set of ImageSections containing the bytecode of this method.
Returns:
an iterator over a collection of ImageSections.
Each ImageSection contains data (usually bytecodes) used
in executing this method in interpreted mode.
The collection may be empty for native methods, or pre-compiled methods.
Typically, the collection will contain no more than one section, but this is not guaranteed.
See Also:
getCompiledSections
- java.util.Iterator getCompiledSections( )
Get the set of ImageSections containing the compiled code of this method.
Returns:
an iterator over a collection of ImageSections.
Each ImageSection contains data (usually executable code) used
in executing this method in compiled mode.
See Also:
equals
- boolean equals(java.lang.Object obj)
Parameters:
obj
- Returns:
True if the given object refers to the same Java Method in the image
hashCode
- int hashCode()