Example usage for Java javax.management.modelmbean ModelMBeanAttributeInfo fields, constructors, methods, implement or subclass
The text is from its open source code.
ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) Constructs a ModelMBeanAttributeInfo object. | |
ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter) Constructs a ModelMBeanAttributeInfo object with a default descriptor. | |
ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter, Descriptor descriptor) Constructs a ModelMBeanAttributeInfo object. |
Descriptor | getDescriptor() Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo. |
String | getName() Returns the name of the feature. |
String | getType() Returns the class name of the attribute. |
boolean | isIs() Indicates if this attribute has an "is" getter. |
boolean | isReadable() Whether the value of the attribute can be read. |
boolean | isWritable() Whether new values can be written to the attribute. |
void | setDescriptor(Descriptor inDescriptor) Sets associated Descriptor (full replace) for the ModelMBeanAttributeDescriptor. |