| java.lang.Object javax.management.MBeanFeatureInfo
MBeanFeatureInfo | public class MBeanFeatureInfo implements java.io.Serializable(Code) | | Provides general information for an MBean descriptor object.
The feature described can be:
- an attribute,
- an operation,
- a parameter,
- a returned value or
- a notification.
|
description | protected String description(Code) | | The description of the feature in a String format
|
MBeanFeatureInfo | public MBeanFeatureInfo(String name, String description)(Code) | | Constructs a MBeanFeatureInfo object.
Parameters: name - The name of the feature. Parameters: description - A human readable description of the feature. |
getDescription | public String getDescription()(Code) | | Returns the human readable description of the feature.
the human readable description of the feature as String. |
getName | public String getName()(Code) | | Returns the name of the feature.
the name of the feature. |
toString | public String toString()(Code) | | Returns a human readable version of the MBeanFeatureInfo instance
MBeanFeatrueInfo is returned in a human readable form (i.e) as a String |
|
|