Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 42116 invoked from network); 18 Dec 2006 13:08:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Dec 2006 13:08:43 -0000 Received: (qmail 65034 invoked by uid 500); 18 Dec 2006 13:08:50 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 65013 invoked by uid 500); 18 Dec 2006 13:08:50 -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 65004 invoked by uid 99); 18 Dec 2006 13:08:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Dec 2006 05:08:50 -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; Mon, 18 Dec 2006 05:08:42 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8852D714286 for ; Mon, 18 Dec 2006 05:08:22 -0800 (PST) Message-ID: <27929997.1166447302555.JavaMail.jira@brutus> Date: Mon, 18 Dec 2006 05:08:22 -0800 (PST) From: "Alexey A. Ivanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-2776) [classlib][swing] j.s.text.BoxView.childAllocation does not throw NPE whereas RI does In-Reply-To: <28609537.1166446703392.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 [ http://issues.apache.org/jira/browse/HARMONY-2776?page=all ] Alexey A. Ivanov updated HARMONY-2776: -------------------------------------- Attachment: H2776-BoxView.patch The fix: moved the check shape == null from childAllocation() to getChildAllocation(). These are the methods which were changed. Also added @Override annotations where applicable. > [classlib][swing] j.s.text.BoxView.childAllocation does not throw NPE whereas RI does > ------------------------------------------------------------------------------------- > > Key: HARMONY-2776 > URL: http://issues.apache.org/jira/browse/HARMONY-2776 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Alexey A. Ivanov > Priority: Minor > Attachments: H2776-BoxView.patch, H2776-BoxView_WithChildrenTest.patch > > > Consider the following example: > import java.awt.Rectangle; > import javax.swing.text.BoxView; > import javax.swing.text.Element; > import javax.swing.text.PlainDocument; > import javax.swing.text.View; > public class Test { > private static class BV extends BoxView { > public BV(final Element element, final int axis) { > super(element, axis); > } > @Override > public void childAllocation(final int index, final Rectangle alloc) { > super.childAllocation(index, alloc); > } > } > public static void main(String[] args) { > BV bv = new BV(new PlainDocument().getDefaultRootElement(), View.Y_AXIS); > bv.childAllocation(0, null); > System.err.println("silent"); > } > } > ======= end of code ======= > Harmony prints: > silent > RI prints: > java.lang.NullPointerException > at javax.swing.text.BoxView.childAllocation(BoxView.java:669) > at Test$BV.childAllocation(Test.java:59) > at Test.main(Test.java:65) -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira