| javax.management.MBeanConstructorInfo javax.management.modelmbean.ModelMBeanConstructorInfo
ModelMBeanConstructorInfo | public ModelMBeanConstructorInfo(String description, Constructor constructorMethod)(Code) | | Creates a new constructor info with a default descriptor.
Parameters: description - human readable description string Parameters: constructorMethod - a Constructor instance representing the MBean constructor |
ModelMBeanConstructorInfo | public ModelMBeanConstructorInfo(String description, Constructor constructorMethod, Descriptor descriptor)(Code) | | Creates a new constructor info with a given descriptor. If a null or invalid descriptor
is passed as a parameter, a default descriptor will be created for the constructor.
Parameters: description - human readable description string Parameters: constructorMethod - a Constructor instance representing the MBean constructor Parameters: descriptor - a descriptor to associate with this constructor |
ModelMBeanConstructorInfo | public ModelMBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature)(Code) | | Creates a new constructor info with default descriptor.
Parameters: name - name for the constructor Parameters: description - human readable description string Parameters: signature - constructor signature |
ModelMBeanConstructorInfo | public ModelMBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature, Descriptor descriptor)(Code) | | Creates a new constructor info with a given descriptor. If a null or invalid descriptor
is passed as a parameter, a default descriptor will be created for the constructor.
Parameters: name - name for the constructor Parameters: description - human readable description string Parameters: signature - constructor signature Parameters: descriptor - a descriptor to associate with this constructor |
getDescriptor | public Descriptor getDescriptor()(Code) | | Returns a copy of the descriptor associated with this constructor.
a copy of this constructor's descriptor instance |
setDescriptor | public void setDescriptor(Descriptor inDescriptor)(Code) | | Replaces the descriptor associated with this constructor. If the inDescriptor
argument is null then the existing descriptor is replaced with a default
descriptor.
Parameters: inDescriptor - descriptor used for replacing the existing constructor descriptor throws: IllegalArgumentException - if the new descriptor is not valid |
toString | public String toString()(Code) | | a human readable string |
|
|