| java.lang.Object javax.management.MBeanFeatureInfo javax.management.MBeanConstructorInfo
Method Summary | |
public Object | clone() Creates and returns a copy of this object. | public MBeanParameterInfo[] | getSignature() Returns the signature of the method, that is, information on the operation's arguments. |
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 describing the parameters(arguments) of the constructor. |
MBeanConstructorInfo | MBeanConstructorInfo(MBeanConstructorInfo old)(Code) | | Package-private duplicate constructor.
This must isolate the new object from any changes to the old object.
|
clone | public Object clone()(Code) | | Creates and returns a copy of this object.
|
getSignature | public MBeanParameterInfo[] getSignature()(Code) | | Returns the signature of the method, that is, information on the operation's arguments.
|
|
|