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

[jira] Updated: (HARMONY-2823) [classlib][swing] javax.swing.plaf.basic.BasicFileChooserUI.getApproveButtonToolTipText(null) returns null while RI throws NPE

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

Sergey Krivenko updated HARMONY-2823:
-------------------------------------

    Attachment: Harmony-2823-BasicFileChooserUI.patch

the attached file i a patch that fixes the bug

> [classlib][swing] javax.swing.plaf.basic.BasicFileChooserUI.getApproveButtonToolTipText(null) returns null while RI throws NPE
> ------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2823
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2823
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Oleg Khaschansky
>            Priority: Minor
>         Attachments: Harmony-2823-BasicFileChooserUI.patch
>
>
> javax.swing.plaf.basic.BasicFileChooserUI.getApproveButtonToolTipText(null) returns null while RI throws NPE. The current implementation of this method simply ignores the passed parameter. Probably, it shouldn't be ignored.
> The following test case demonstrates this behavior:
> -----------------------------------------------------------------------------------
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.BasicFileChooserUI;
> import javax.swing.*;
> public class Test0 extends TestCase {
>     public void testcase1() {
>             BasicFileChooserUI b = new BasicFileChooserUI(new JFileChooser(""));
>             try {
>                 b.getApproveButtonToolTipText(null);
>                 fail("NPE should be thrown");
>             } catch ( NullPointerException e) {
>               //expected
>             }
>        }
> }

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