You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Andrey Pavlenko (JIRA)" <ji...@apache.org> on 2007/03/22 15:14:32 UTC

[jira] Commented: (HARMONY-3430) [classlib][awt] DebugGraphics.getClip() throws NPE

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

Andrey Pavlenko commented on HARMONY-3430:
------------------------------------------

Vasily, this is not awt but swing issue. I think the best resolution is to initialize this field with a valid graphics implementation.
Could you please change the component back to swing?

> [classlib][awt] DebugGraphics.getClip() throws NPE
> --------------------------------------------------
>
>                 Key: HARMONY-3430
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3430
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vasily Zakharov
>         Assigned To: Alexey Petrenko
>            Priority: Minor
>
> Consider the following test:
> import java.awt.Container;
> import javax.swing.DebugGraphics;
> public class Test {
>     public static void main(String args[]) throws Exception {
>         new Container().paint(new DebugGraphics());
>         System.out.println("SUCCESS");
>     }
> }
> Output on RI:
> SUCCESS
> Output on Harmony:
> Exception in thread "main" java.lang.NullPointerException
>         at javax.swing.DebugGraphics.getClip(DebugGraphics.java:769)
>         at java.awt.Container.paintComponentsImpl(Container.java:996)
>         at java.awt.Container.paint(Container.java:936)
>         at Test.main(Test.java:6)
> The reason for that is getClip() references originalGraphics field, that is initialized with null by no-parameter constuctor.
> The same problem also exists for many other DebugGraphics methods that reference originalGraphics directly.
> The proper resolution would be either checking originalGraphics for null each time before using, or initialize originalGraphics with some non-null value. I'm not sure which way is right to follow.

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