Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 94702 invoked from network); 23 Aug 2007 10:42:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Aug 2007 10:42:52 -0000 Received: (qmail 98300 invoked by uid 500); 23 Aug 2007 10:42:49 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 98284 invoked by uid 500); 23 Aug 2007 10:42:49 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 98275 invoked by uid 99); 23 Aug 2007 10:42:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2007 03:42:49 -0700 X-ASF-Spam-Status: No, hits=-99.6 required=10.0 tests=ALL_TRUSTED,SUBJECT_FUZZY_TION X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2007 10:42:51 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B1CA471420A for ; Thu, 23 Aug 2007 03:42:31 -0700 (PDT) Message-ID: <8582123.1187865751725.JavaMail.jira@brutus> Date: Thu, 23 Aug 2007 03:42:31 -0700 (PDT) From: "Dmitry Irlyanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4658) [classlib][swing][compartibility] The order of ItemStateChanged events in buttonGroup is differs from RI In-Reply-To: <26950216.1187699010485.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dmitry Irlyanov updated HARMONY-4658: ------------------------------------- Attachment: H4658-TogggleButton.patch Proposed fix > [classlib][swing][compartibility] The order of ItemStateChanged events in buttonGroup is differs from RI > -------------------------------------------------------------------------------------------------------- > > Key: HARMONY-4658 > URL: https://issues.apache.org/jira/browse/HARMONY-4658 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Dmitry Irlyanov > Attachments: H4658-TogggleButton.patch > > > The order of itemStateChanged events is different for RI and for our implementation. It isn't a bug because the behavior is unspecified, but some applications may rely on this issue > import java.awt.event.ItemEvent; > import java.awt.event.ItemListener; > import javax.swing.AbstractButton; > import javax.swing.ButtonGroup; > import javax.swing.JRadioButton; > public class Test { > public static void main(String[] args) { > ButtonGroup group = new ButtonGroup(); > JRadioButton b1 = new JRadioButton("First"); > JRadioButton b2 = new JRadioButton("Second"); > group.add(b1); > group.add(b2); > b1.setSelected(true); > ItemListener buttonListener = new ItemListener() { > public void itemStateChanged(ItemEvent e) { > AbstractButton rb = (AbstractButton) e.getSource(); > System.err.println(rb.getText() + " state changed"); > } > }; > b1.addItemListener(buttonListener); > b2.addItemListener(buttonListener); > b2.setSelected(true); > b1.setSelected(true); > b2.setSelected(true); > b1.setSelected(true); > } > } > Output: > RI: > First state changed > Second state changed > Second state changed > First state changed > First state changed > Second state changed > Second state changed > First state changed > Harmony: > Second state changed > First state changed > First state changed > Second state changed > Second state changed > First state changed > First state changed > Second state changed -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.