You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Igor V. Stolyarov (JIRA)" <ji...@apache.org> on 2007/03/16 08:26:09 UTC

[jira] Commented: (HARMONY-2214) [classlib][swing] CellRendererPane method paintComponent illegally throw NPE for null parameters

    [ https://issues.apache.org/jira/browse/HARMONY-2214?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12481512 ] 

Igor V. Stolyarov commented on HARMONY-2214:
--------------------------------------------

Works for me.
Thank you Mark.

> [classlib][swing] CellRendererPane method paintComponent illegally throw NPE for null parameters
> ------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2214
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2214
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Igor V. Stolyarov
>         Assigned To: Mark Hindess
>         Attachments: CellRenderPaneTest.patch, Harmony-2214.patch
>
>
> Harmony CellRendererPane.paintComponent(Graphics g, Component c, Container p, int x, int y,
> int w, int h, boolean shouldValidate) illegally throws NPE for null parameters, but RI doesn't
> Test for reproduce:
> Test.java-------------------------------------------------------------------
> import javax.swing.*;
> public class Test {
>     public static void main(String[] args) {
>         CellRendererPane c = new CellRendererPane();
>         try {
>             c.paintComponent(null, null, null, 0, 0, 0, 0, false);
>             System.out.println("PASSED");
>         } catch (Throwable t) {
>             System.out.println(t + " was thrown");
>         }
>     }
> }
> -----------------------------------------------------------------------
> Output:
> Bea JRockit
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC:
>  System optimized over throughput (initial strategy singleparpar))
> PASSED
> ------------------------------------------------------------------------
> Harmony
> Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundatio
> n or its licensors, as applicable.
> java version "1.5.0"
> pre-alpha : not complete or compatible
> svn = r474778, (Nov 14 2006), Windows/ia32/msvc 1310, release build
> http://incubator.apache.org/harmony
> java.lang.NullPointerException was thrown

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.