| java.lang.Object javax.management.MBeanFeatureInfo javax.management.MBeanConstructorInfo
MBeanConstructorInfo | public MBeanConstructorInfo(String description, Constructor constructor)(Code) | | Constructs an MBeanConstructorInfo object.
Parameters: description - A human readable description of the operation. Parameters: constructor - The java.lang.reflect.Constructor object describing the MBean constructor. |
MBeanConstructorInfo | public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature)(Code) | | Constructs an MBeanConstructorInfo object.
Parameters: name - The name of the constructor. Parameters: description - A human readable description of the constructor. Parameters: signature - MBeanParameterInfo objects describingthe parameters(arguments) of the constructor. |
clone | public Object clone()(Code) | | Creates and returns a copy of this object.
A duplicate copy of this object is created |
getSignature | public MBeanParameterInfo[] getSignature()(Code) | | Returns the signature of the method, that is, information on
the operations arguments.
A MBeanParameterInfo array is returned which describesthe parameters of the constructor |
toString | public String toString()(Code) | | Returns a human readable version of the MBeanConstructorInfo instance
String format of MBeanConstructorInfo is returned |
|
|