KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > management > MBeanAttributeInfo

javax.management
Class MBeanAttributeInfo

java.lang.Object
  extended by javax.management.MBeanFeatureInfo
      extended by javax.management.MBeanAttributeInfo
All Implemented Interfaces:
Serializable, Cloneable
Direct Known Subclasses:
ModelMBeanAttributeInfo, OpenMBeanAttributeInfoSupport
See Also:
Top Examples, Source Code

public Object clone()
See Also:
Cloneable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean equals(Object o)
See Also:
Hashtable, Object.hashCode(), isIs(), isWritable(), isReadable(), MBeanFeatureInfo.getDescription(), getType(), MBeanFeatureInfo.getName()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object), MBeanFeatureInfo
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isIs()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isReadable()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isWritable()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MBeanAttributeInfo(String name,
                          String description,
                          Method getter,
                          Method setter)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MBeanAttributeInfo(String name,
                          String type,
                          String description,
                          boolean isReadable,
                          boolean isWritable,
                          boolean isIs)
                   throws IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags