org.apache.xmlrpc.metadata
public class Util extends Object
Method Summary | |
---|---|
static String | getMethodHelp(Class pClass, Method[] pMethods) Returns a help string for the given method, which
is applied to the given class. |
static String | getMethodHelp(Class pClass, Method pMethod) Returns a help string for the given method, which
is applied to the given class. |
static String[][] | getSignature(Method[] pMethods) Returns a signature for the given methods. |
static String[] | getSignature(Method pMethod) Returns a signature for the given methods. |
static String | getSignature(Object[] args) Returns a signature for the given parameter set. |
static String | getSignatureType(Class pType) Returns a signature for the given return type or
parameter class. |
static Object | newInstance(Class pClass)
Creates a new instance of pClass . |
Parameters: pMethods Methods, for which a signature is being queried.
Returns: Signature string, or null, if no signature is available.
Parameters: pMethod Method, for which a signature is being queried.
Returns: Signature string, or null, if no signature is available.
Parameters: pType The class for which a signature is being queried.
Returns: Signature, if known, or null.
pClass
.