[Ejtools-cvs] libraries/common/src/main/net/sourceforge/ejtools/jmx MBeanAccessor.java,1.6,1.7
Brought to you by:
letiemble
From: <let...@us...> - 2002-06-04 06:35:35
|
Update of /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/jmx In directory usw-pr-cvs1:/tmp/cvs-serv26005/common/src/main/net/sourceforge/ejtools/jmx Modified Files: MBeanAccessor.java Log Message: Pretty print Index: MBeanAccessor.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/net/sourceforge/ejtools/jmx/MBeanAccessor.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MBeanAccessor.java 30 May 2002 21:33:00 -0000 1.6 --- MBeanAccessor.java 4 Jun 2002 06:35:31 -0000 1.7 *************** *** 7,11 **** package net.sourceforge.ejtools.jmx; ! import javax.management.Attribute; import javax.management.MBeanInfo; import javax.management.ObjectInstance; --- 7,11 ---- package net.sourceforge.ejtools.jmx; ! import javax.management.*; import javax.management.MBeanInfo; import javax.management.ObjectInstance; *************** *** 37,40 **** --- 37,50 ---- */ public void setAttribute(ObjectName name, Attribute attribute); + + + /** + * Sets the attributes attribute of the MBeanAccessor object + * + * @param name The new attributes value + * @param attributes The new attributes value + * @return Description of the Return Value + */ + public AttributeList setAttributes(ObjectName name, AttributeList attributes); |