| java.lang.Object javax.management.MBeanFeatureInfo javax.management.MBeanAttributeInfo
All known Subclasses: javax.management.openmbean.OpenMBeanAttributeInfoSupport, javax.management.modelmbean.ModelMBeanAttributeInfo,
MBeanAttributeInfo | public MBeanAttributeInfo(String name, String description, Method getter, Method setter) throws IntrospectionException(Code) | | Creates a new MBeanAttributeInfo
Parameters: name - The attribute name Parameters: description - The attribute description Parameters: getter - The getter method, or null if write only Parameters: setter - The setter method, or null if read only throws: IntrospectionException - If the introspection of the attribute fails |
MBeanAttributeInfo | public MBeanAttributeInfo(String name, String className, String description, boolean isReadable, boolean isWritable, boolean isIs)(Code) | | Creates a new MBeanAttributeInfo
Parameters: name - The attribute name Parameters: description - The attribute description Parameters: isReadable - The attribute's readability Parameters: isWritable - The attribute's writability Parameters: isIs - The flag if the attribute's type is boolean |
hashCode | public int hashCode()(Code) | | |
isIs | public boolean isIs()(Code) | | |
isReadable | public boolean isReadable()(Code) | | |
isWritable | public boolean isWritable()(Code) | | |
|
|