| |
|
| java.lang.Object org.apache.harmony.tools.javah.ClazzMethod
ClazzMethod | public class ClazzMethod (Code) | | This class is a wrapper of BCEL's Method class.
This class depends on Apache Byte Code Engineering Library (BCEL) 5.0 or
later. Please see http://jakarta.apache.org/bcel for more information
about this library.
|
Constructor Summary | |
public | ClazzMethod(Clazz clazz, Method wrappedMethod, boolean overloaded) Constructs a ClazzMethod object. |
Method Summary | |
public static String | getJNIType(Type type) Returns a JNI-style representation of the given data type passed
as a Class object.
Parameters: type - - a Class object that wraps a data type. | public String | getMangledName() Returns a mangled name of a wrapped method. | public String | getName() Returns a name of a wrapped method. | public String | getSignature() Returns a method signature. | public String | toAlternativeString() Returns an alternative string that represents a method part of
a JNI-style header file. | public String | toString() Returns a string that represents a method part of
a JNI-style header file. |
ClazzMethod | public ClazzMethod(Clazz clazz, Method wrappedMethod, boolean overloaded)(Code) | | Constructs a ClazzMethod object.
Parameters: clazz - - an owner. Parameters: wrappedMethod - - a wrapped Method class. Parameters: overloaded - - true if the wrapped methodis overloaded; false otherwise. |
getJNIType | public static String getJNIType(Type type)(Code) | | Returns a JNI-style representation of the given data type passed
as a Class object.
Parameters: type - - a Class object that wraps a data type. a string that represents a JNI-style data type. |
getMangledName | public String getMangledName()(Code) | | Returns a mangled name of a wrapped method.
a mangled method name. |
getName | public String getName()(Code) | | Returns a name of a wrapped method.
a method name. |
getSignature | public String getSignature()(Code) | | Returns a method signature.
a method signature string. |
toAlternativeString | public String toAlternativeString()(Code) | | Returns an alternative string that represents a method part of
a JNI-style header file.
|
toString | public String toString()(Code) | | Returns a string that represents a method part of
a JNI-style header file.
|
|
|
|