You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Pavel Dolgov (JIRA)" <ji...@apache.org> on 2006/12/05 13:04:21 UTC

[jira] Created: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

[classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
-----------------------------------------------------------------------------------------------------

                 Key: HARMONY-2456
                 URL: http://issues.apache.org/jira/browse/HARMONY-2456
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Pavel Dolgov
            Priority: Minor


Test case:
---------------------
import javax.swing.DefaultFocusManager;
import javax.swing.JCheckBoxMenuItem;

import junit.framework.TestCase;

public class TheTest extends TestCase {

    public static void main(String args[]) {
        junit.textui.TestRunner.run(TheTest.class);
    }

    public void testcase1() {                                           
        DefaultFocusManager mn = new DefaultFocusManager();
        mn.upFocusCycle(new JCheckBoxMenuItem());               
    }         
}

RI output:
--------------
.
Time: 2,24

OK (1 test)

Harmony output:
--------------
.E
Time: 0.81
There was 1 error:
1) testcase1(TheTest)java.lang.NullPointerException
	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
	at TheTest.testcase1(TheTest.java:14)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:9)

FAILURES!!!
Tests run: 1,  Failures: 0,  Errors: 1


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

        

[jira] Closed: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-2456.
---------------------------------


Verified.  Thanks.

> [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2456
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2456
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Component.patch, ComponentRTest.patch
>
>
> Test case:
> ---------------------
> import javax.swing.DefaultFocusManager;
> import javax.swing.JCheckBoxMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {                                           
>         DefaultFocusManager mn = new DefaultFocusManager();
>         mn.upFocusCycle(new JCheckBoxMenuItem());               
>     }         
> }
> RI output:
> --------------
> .
> Time: 2,24
> OK (1 test)
> Harmony output:
> --------------
> .E
> Time: 0.81
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
> 	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
> 	at TheTest.testcase1(TheTest.java:14)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess resolved HARMONY-2456.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495860.  Please confirm that they have been applied as expected.


> [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2456
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2456
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Component.patch, ComponentRTest.patch
>
>
> Test case:
> ---------------------
> import javax.swing.DefaultFocusManager;
> import javax.swing.JCheckBoxMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {                                           
>         DefaultFocusManager mn = new DefaultFocusManager();
>         mn.upFocusCycle(new JCheckBoxMenuItem());               
>     }         
> }
> RI output:
> --------------
> .
> Time: 2,24
> OK (1 test)
> Harmony output:
> --------------
> .E
> Time: 0.81
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
> 	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
> 	at TheTest.testcase1(TheTest.java:14)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2456?page=all ]

Andrey Pavlenko updated HARMONY-2456:
-------------------------------------

    Attachment: Component.patch
                ComponentRTest.patch

The patch and the regression test are attached.

> [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2456
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2456
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Component.patch, ComponentRTest.patch
>
>
> Test case:
> ---------------------
> import javax.swing.DefaultFocusManager;
> import javax.swing.JCheckBoxMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {                                           
>         DefaultFocusManager mn = new DefaultFocusManager();
>         mn.upFocusCycle(new JCheckBoxMenuItem());               
>     }         
> }
> RI output:
> --------------
> .
> Time: 2,24
> OK (1 test)
> Harmony output:
> --------------
> .E
> Time: 0.81
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
> 	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
> 	at TheTest.testcase1(TheTest.java:14)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

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

        

[jira] Updated: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-2456:
-------------------------------------

    Patch Info: [Patch Available]

> [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2456
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2456
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Component.patch, ComponentRTest.patch
>
>
> Test case:
> ---------------------
> import javax.swing.DefaultFocusManager;
> import javax.swing.JCheckBoxMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {                                           
>         DefaultFocusManager mn = new DefaultFocusManager();
>         mn.upFocusCycle(new JCheckBoxMenuItem());               
>     }         
> }
> RI output:
> --------------
> .
> Time: 2,24
> OK (1 test)
> Harmony output:
> --------------
> .E
> Time: 0.81
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
> 	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
> 	at TheTest.testcase1(TheTest.java:14)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2456) [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12464948 ] 

Andrey Pavlenko commented on HARMONY-2456:
------------------------------------------

Mark, the patches have been applied properly. Thanks.

> [classlib][awt] java.awt.DefaultFocusManager.upFocusCycle(Component aComponent) throws unexpected NPE
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2456
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2456
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Component.patch, ComponentRTest.patch
>
>
> Test case:
> ---------------------
> import javax.swing.DefaultFocusManager;
> import javax.swing.JCheckBoxMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {                                           
>         DefaultFocusManager mn = new DefaultFocusManager();
>         mn.upFocusCycle(new JCheckBoxMenuItem());               
>     }         
> }
> RI output:
> --------------
> .
> Time: 2,24
> OK (1 test)
> Harmony output:
> --------------
> .E
> Time: 0.81
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Component.transferFocusUpCycle(Component.java:3178)
> 	at java.awt.DefaultKeyboardFocusManager.upFocusCycle(DefaultKeyboardFocusManager.java:545)
> 	at TheTest.testcase1(TheTest.java:14)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira