[Ejtools-developers] [ ejtools-Bugs-676902 ] IndexOutOfBoundsException invoking multi argument ops
Brought to you by:
letiemble
From: SourceForge.net <no...@so...> - 2003-01-30 17:10:54
|
Bugs item #676902, was opened at 2003-01-29 18:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=455072&aid=676902&group_id=49088 Category: JMX Browser (Swing) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Martin Fuzzey (mfuzzey) >Assigned to: Laurent Etiemble (letiemble) Summary: IndexOutOfBoundsException invoking multi argument ops Initial Comment: When a multi argument (>1) MBean operation is invoked the Swing UI throws an ArrayIndexOutOfBoundsException. This is due to a double index increment in FullMBeanMethodDialog.actionPerformed() (lines 207 - 214) : int j = 0; for (Iterator i = this.editors.iterator(); i.hasNext(); j++) { Editor editor = (Editor) i.next(); parameters[j] = editor.getEditor().getValue(); types[j] = editor.getType(); j++; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=455072&aid=676902&group_id=49088 |