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

[jira] Assigned: (HARMONY-2493) [classlib][awt] java.awt.KeyboardFocusManager.getDefaultFocusTraversalKeys() returns null instead of correct object

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

Alexei Zakharov reassigned HARMONY-2493:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][awt] java.awt.KeyboardFocusManager.getDefaultFocusTraversalKeys() returns null instead of correct object
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2493
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2493
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: DefaultKeyboardFocusManager.patch, KeyboardFocusManager.patch, KeyboardFocusManagerTest.patch, PerfTest.java
>
>
> Test case:
> --------------
> import java.awt.AWTEvent;
> import java.awt.Component;
> import java.awt.Container;
> import java.awt.event.KeyEvent;
> import java.util.Set;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         KeyboardFocusManagerImpl obj = new KeyboardFocusManagerImpl();
>         Set keys = obj.getDefaultFocusTraversalKeys(1);
>         assertNotNull(keys);
>         assertTrue(keys.size() > 0);
>     }
>     class KeyboardFocusManagerImpl extends java.awt.KeyboardFocusManager {
>         public KeyboardFocusManagerImpl() {
>             super();
>         }
>         public boolean dispatchEvent(AWTEvent arg0) {
>             return false;
>         }
>         public boolean dispatchKeyEvent(KeyEvent arg0) {
>             return false;
>         }
>         public boolean postProcessKeyEvent(KeyEvent arg0) {
>             return false;
>         }
>         public void processKeyEvent(Component arg0, KeyEvent arg1) {
>         }
>         protected void enqueueKeyEvents(long arg0, Component arg1) {
>         }
>         protected void dequeueKeyEvents(long arg0, Component arg1) {
>         }
>         protected void discardKeyEvents(Component arg0) {
>         }
>         public void focusNextComponent(Component arg0) {
>         }
>         public void focusPreviousComponent(Component arg0) {
>         }
>         public void upFocusCycle(Component arg0) {
>         }
>         public void downFocusCycle(Container arg0) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,991
> OK (1 test)
> Harmony output:
> --------------
> .F
> Time: 0.361
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError
> 	at TheTest.testcase1(TheTest.java:17)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:12)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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