Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 39042 invoked from network); 18 Dec 2006 12:58:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Dec 2006 12:58:47 -0000 Received: (qmail 49813 invoked by uid 500); 18 Dec 2006 12:58:54 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 49790 invoked by uid 500); 18 Dec 2006 12:58:54 -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 49779 invoked by uid 99); 18 Dec 2006 12:58:54 -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 04:58:54 -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 04:58:44 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6056B71428E for ; Mon, 18 Dec 2006 04:58:23 -0800 (PST) Message-ID: <28609537.1166446703392.JavaMail.jira@brutus> Date: Mon, 18 Dec 2006 04:58:23 -0800 (PST) From: "Alexey A. Ivanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-2776) [classlib][swing] j.s.text.BoxView.childAllocation does not throw NPE whereas RI does 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] 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 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