API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management. MBeanAttributeInfo View Source
Author(s)
Since
1.5
Version
Serial
Hierarchy
 Object
      MBeanFeatureInfo
          MBeanAttributeInfo
Implements
 Cloneable
Subclasses
Description
public class MBeanAttributeInfo
  Describes an MBean attribute exposed for management.
See also:   
Constructors
public MBeanAttributeInfo (String name, String description, Method getter, Method setter) throws IntrospectionException
  This constructor takes the name of a simple attribute, and Method objects for reading and writing the attribute.
public MBeanAttributeInfo (String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)
  Constructs an MBeanAttributeInfo object.
public MBeanAttributeInfo (String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)
  Constructs an MBeanAttributeInfo object.
Methods
Hide/Show inherited methods
public Object clone ()
  Returns a shallow clone of this instance.
public boolean equals (Object o) [Overrides MBeanFeatureInfo]
  Compare this MBeanAttributeInfo to another.
public String getDescription () [Inherited From MBeanFeatureInfo]
  Returns the human-readable description of the feature.
public Descriptor getDescriptor () [Inherited From MBeanFeatureInfo]
  Returns the descriptor for the feature.
public String getName () [Inherited From MBeanFeatureInfo]
  Returns the name of the feature.
public String getType ()
  Returns the class name of the attribute.
public int hashCode () [Overrides MBeanFeatureInfo]
public boolean isIs ()
  Indicates if this attribute has an "is" getter.
public boolean isReadable ()
  Whether the value of the attribute can be read.
public boolean isWritable ()
  Whether new values can be written to the attribute.
public String toString ()
Fields
Hide/Show inherited fields
protected String description [Inherited From MBeanFeatureInfo]
  The human-readable description of the feature.
protected String name [Inherited From MBeanFeatureInfo]
  The name of the feature.
pack-privatefinalstatic MBeanAttributeInfo NO_ATTRIBUTES
pack-privatefinalstatic long serialVersionUID = "3952882688968447265" [Inherited From MBeanFeatureInfo]
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar