Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 21016 invoked from network); 28 Feb 2007 05:23:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Feb 2007 05:23:26 -0000 Received: (qmail 50820 invoked by uid 500); 28 Feb 2007 05:23:35 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 50718 invoked by uid 500); 28 Feb 2007 05:23:35 -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 50709 invoked by uid 99); 28 Feb 2007 05:23:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Feb 2007 21:23:35 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= 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; Tue, 27 Feb 2007 21:23:25 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A1F3C714057 for ; Tue, 27 Feb 2007 21:23:05 -0800 (PST) Message-ID: <22662429.1172640185661.JavaMail.jira@brutus> Date: Tue, 27 Feb 2007 21:23:05 -0800 (PST) From: "Vladimir Molotkov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-3259) [classlib][swing] java.lang.ClassCastException from JComponent.paintChildren after setting debug option MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][swing] java.lang.ClassCastException from JComponent.paintChildren after setting debug option ------------------------------------------------------------------------------------------------------- Key: HARMONY-3259 URL: https://issues.apache.org/jira/browse/HARMONY-3259 Project: Harmony Issue Type: Bug Components: Classlib Environment: all Reporter: Vladimir Molotkov Please run the following test to reproduce the problem: ----- import javax.swing.JFrame; import javax.swing.JComboBox; import javax.swing.JScrollPane; import javax.swing.DebugGraphics; public class d { public static void main(String[] args) { JFrame frame = new JFrame("test"); JComboBox box = new JComboBox(new String[] {"test"}); box.setDebugGraphicsOptions(DebugGraphics.LOG_OPTION); JScrollPane p = new JScrollPane(box); frame.add(p); frame.pack(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.