Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.management.AttributeList

Uses of AttributeList in javax.management
 

Methods in javax.management that return AttributeList
 AttributeList MBeanServer.getAttributes(ObjectName name, java.lang.String[] attributes)
           
 AttributeList MBeanServer.setAttributes(ObjectName name, AttributeList attributes)
           
 AttributeList DynamicMBean.getAttributes(java.lang.String[] attributes)
          Returns the values of the attributes with names matching the passed string array.
 AttributeList DynamicMBean.setAttributes(AttributeList attributes)
          Sets the values of the attributes passed as an AttributeList of name and new value pairs.
 

Methods in javax.management with parameters of type AttributeList
 AttributeList MBeanServer.setAttributes(ObjectName name, AttributeList attributes)
           
 AttributeList DynamicMBean.setAttributes(AttributeList attributes)
          Sets the values of the attributes passed as an AttributeList of name and new value pairs.
 boolean AttributeList.addAll(AttributeList list)
          Append the attributes the passed list to the end of this list.
 boolean AttributeList.addAll(int index, AttributeList list)
          Insert all the attributes in the passed list at the specified location in this list.
 

Constructors in javax.management with parameters of type AttributeList
AttributeList(AttributeList list)
          Contruct a new attribute from another attribute list.