| |
|
| java.lang.Object sun.rmi.rmic.newrmic.jrmp.Util
Util | final class Util (Code) | | Provides static utility methods.
WARNING: The contents of this source file are not part of any
supported API. Code that depends on them does so at its own risk:
they are subject to change or removal without notice.
version: 1.9, 07/05/05 author: Peter Jones |
Method Summary | |
static String | binaryNameOf(ClassDoc cl) Returns the binary name of the class or interface represented
by the specified ClassDoc. | static String | getFriendlyUnqualifiedSignature(MethodDoc method) Returns a reader-friendly string representation of the
specified method's signature. | static boolean | isVoid(Type type) Returns true if the specified type is void. | static String | methodDescriptorOf(MethodDoc method) Returns the method descriptor for the specified method. |
binaryNameOf | static String binaryNameOf(ClassDoc cl)(Code) | | Returns the binary name of the class or interface represented
by the specified ClassDoc.
|
getFriendlyUnqualifiedSignature | static String getFriendlyUnqualifiedSignature(MethodDoc method)(Code) | | Returns a reader-friendly string representation of the
specified method's signature. Names of reference types are not
package-qualified.
|
isVoid | static boolean isVoid(Type type)(Code) | | Returns true if the specified type is void.
|
methodDescriptorOf | static String methodDescriptorOf(MethodDoc method)(Code) | | Returns the method descriptor for the specified method.
See section 4.3.3 of The Java Virtual Machine Specification
Second Edition for the definition of a "method descriptor".
|
|
|
|