JProfiler API

com.jprofiler.api.platform.descriptors
Interface MethodDescriptor

All Superinterfaces:
Descriptor

public interface MethodDescriptor
extends Descriptor

Descriptor for an array type.

The description property of the super-interface is suitable for verbose output, the class, signature and method name properties of this derived interface can be used for programmatic processing.


Method Summary
 ClassDescriptor getDeclaringClass()
          Returns the descriptor of the class that declares this method.
 java.lang.String getMethodName()
          Returns the name of the method.
 java.lang.String getMethodSignature()
          Returns the signature of this method in JVM format.
 
Methods inherited from interface com.jprofiler.api.platform.descriptors.Descriptor
getDescription
 

Method Detail

getDeclaringClass

ClassDescriptor getDeclaringClass()
Returns the descriptor of the class that declares this method.

Returns:
the class descriptor

getMethodSignature

java.lang.String getMethodSignature()
Returns the signature of this method in JVM format. That format is explained in the javadoc of InterceptionMethod.

Returns:
the signature in JVM format

getMethodName

java.lang.String getMethodName()
Returns the name of the method.

Returns:
the method name

JProfiler API