Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 51255 invoked from network); 19 Mar 2007 16:35:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Mar 2007 16:35:54 -0000 Received: (qmail 24840 invoked by uid 500); 19 Mar 2007 16:36:01 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 24795 invoked by uid 500); 19 Mar 2007 16:36:01 -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 24767 invoked by uid 99); 19 Mar 2007 16:36:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Mar 2007 09:36:01 -0700 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; Mon, 19 Mar 2007 09:35:52 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BE6E471407F for ; Mon, 19 Mar 2007 09:35:32 -0700 (PDT) Message-ID: <3781718.1174322132776.JavaMail.jira@brutus> Date: Mon, 19 Mar 2007 09:35:32 -0700 (PDT) From: "Dmitry Irlyanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-2854) [classlib][swing] j.s.plaf.basic.BasicScrollBarUI.getTrackBounds() returns not null on Harmony In-Reply-To: <6405100.1166795061065.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-2854?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dmitry Irlyanov updated HARMONY-2854: ------------------------------------- Attachment: H2854-BasicScrollBarUI-updated.patch I've created more architectonicly correct patch > [classlib][swing] j.s.plaf.basic.BasicScrollBarUI.getTrackBounds() returns not null on Harmony > ---------------------------------------------------------------------------------------------- > > Key: HARMONY-2854 > URL: https://issues.apache.org/jira/browse/HARMONY-2854 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Alexey A. Ivanov > Assigned To: Alexey Petrenko > Priority: Minor > Attachments: H2854-BasicScrollBarUI-updated.patch, H2854-BasicScrollBarUI.patch, H2854-BasicScrollBarUITest-simplify.patch, H2854-BasicScrollBarUITest.patch, H2854.java, H2854.java > > > ====== Code to Reproduce ====== > import java.awt.Rectangle; > import javax.swing.plaf.basic.BasicScrollBarUI; > public class Test { > private static class TestBasicScrollBarUI extends BasicScrollBarUI { > @Override > public Rectangle getTrackBounds() { > return super.getTrackBounds(); > } > } > public static void main(String[] args) { > TestBasicScrollBarUI sbr = new TestBasicScrollBarUI(); > System.err.println("res=" + sbr.getTrackBounds()); > } > } > ======= end of code ======= > ------- Harmony ------- > res=java.awt.Rectangle[x=0,y=0,width=0,height=0] > -------------- > ------- RI ------- > res=null > -------------- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.