You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey A. Ivanov (JIRA)" <ji...@apache.org> on 2007/04/17 14:49:15 UTC

[jira] Commented: (HARMONY-2771) [classlib][swing] javax.swing.plaf.basic.BasicSplitPaneUI.getLastDragLocation() returns -1 while RI returns 0

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

Alexey A. Ivanov commented on HARMONY-2771:
-------------------------------------------

That's OK.
Thank you Mark!

> [classlib][swing] javax.swing.plaf.basic.BasicSplitPaneUI.getLastDragLocation() returns -1 while RI returns 0
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2771
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2771
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Mark Hindess
>         Attachments: H2771-BasicSplitPangeUI.patch, H2771-BasicSplitPangeUITest.patch
>
>
> Compatibility issue. There is no mention of getLastDragLocation() initial value
> in the specification. RI returns 0 while Harmony returns -1.
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class test extends TestCase {   
>         public void testcase1() { 
>            BasicSplitPaneUI pui = new BasicSplitPaneUI();                      
>            System.out.println("getLastDragLocation()=="+pui.getLastDragLocation());        
>         }
> }
> Output on Sun 1.5:
> =================
> .getLastDragLocation()==0
> Time: 0
> OK (1 test)
> Output on Harmony:
> ==================
> .getLastDragLocation()==-1
> Time: 0.015
> OK (1 test)

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