| java.lang.Object org.codehaus.janino.MethodDescriptor
MethodDescriptor | public class MethodDescriptor (Code) | | Representation of a "method descriptor" (JVMS 4.3.3).
|
Field Summary | |
final public String[] | parameterFDs The field descriptors of the method parameters. | final public String | returnFD The field descriptor of the method return value. |
parameterFDs | final public String[] parameterFDs(Code) | | The field descriptors of the method parameters.
|
returnFD | final public String returnFD(Code) | | The field descriptor of the method return value.
|
MethodDescriptor | public MethodDescriptor(String s)(Code) | | Parse a method descriptor into parameter FDs and return FDs.
|
prependParameter | public static String prependParameter(String md, String parameterFD)(Code) | | Patch an additional parameter into a given method descriptor.
|
toString | public String toString()(Code) | | Returns the "method descriptor" (JVMS 4.3.3).
|
|
|