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

[jira] Updated: (HARMONY-2707) [classlib][swing] javax.swing.plaf.basic.BasicArrowButton.paintTriangle() throws unexpected NPE when incorrect 'direction' parameter is passed in

     [ http://issues.apache.org/jira/browse/HARMONY-2707?page=all ]

Alexander Simbirtsev updated HARMONY-2707:
------------------------------------------

    Attachment: Utilities-patch.txt

Here's the proposed fix

> [classlib][swing] javax.swing.plaf.basic.BasicArrowButton.paintTriangle() throws unexpected NPE when incorrect 'direction' parameter is passed in
> -------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2707
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2707
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: Utilities-patch.txt
>
>
> Use the following code to reproduce:
> import java.awt.Graphics2D;
> import java.awt.image.BufferedImage;
> import javax.swing.plaf.basic.BasicArrowButton;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     private static final int INCORRECT_DIRECTION = 10;
>     public void testcase1() {                                    
>         try {
>             Graphics2D g2D = new BufferedImage(6, 6, BufferedImage.TYPE_INT_RGB).createGraphics();
>             BasicArrowButton ab = new BasicArrowButton(0);
>             ab.paintTriangle(g2D, 0, 0, 0, INCORRECT_DIRECTION, true);
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }

-- 
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