Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 16475 invoked from network); 3 Sep 2007 15:33:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Sep 2007 15:33:19 -0000 Received: (qmail 68719 invoked by uid 500); 3 Sep 2007 15:33:14 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 68698 invoked by uid 500); 3 Sep 2007 15:33:14 -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 68689 invoked by uid 99); 3 Sep 2007 15:33:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Sep 2007 08:33:14 -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; Mon, 03 Sep 2007 15:33:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D231671420B for ; Mon, 3 Sep 2007 08:32:58 -0700 (PDT) Message-ID: <4001237.1188833578840.JavaMail.jira@brutus> Date: Mon, 3 Sep 2007 08:32:58 -0700 (PDT) From: "Dmitry Irlyanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (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:comment-tabpanel#action_12524544 ] Dmitry Irlyanov commented on HARMONY-4658: ------------------------------------------ Alexei, It's my fault. Try this one > [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 > Assignee: Alexei Zakharov > Attachments: H4658-DefaultButtonModel-JToggleButton.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.