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 Petrenko (JIRA)" <ji...@apache.org> on 2007/02/06 15:50:06 UTC

[jira] Commented: (HARMONY-2618) [classlib][swing] javax.swing.JTree.getExpandedDescendants() returns Enumeration while RI returns null

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

Alexey Petrenko commented on HARMONY-2618:
------------------------------------------

Yes, I can reproduce this failure too.

> [classlib][swing] javax.swing.JTree.getExpandedDescendants() returns Enumeration while RI returns null
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2618
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2618
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexey Petrenko
>         Attachments: Harmony-2618-JTree.patch, Harmony-2618-JTreeTest.patch
>
>
> Problem details:
> ----------------------
> According to J2SE API 5.0 specifications of
> getExpandedDescendants() method: 
> "Returns an Enumeration of the descendants of the path parent that are
> currently expanded.If parent is not currently expanded, this will return null"
> javax.swing.JTree.getExpandedDescendants() returns Enumeration of TreePath
> while RI returns null.
> Test for reprodicing:
> --------------------------
> import javax.swing.JTree;
> import javax.swing.tree.TreePath;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public void testcase1() {
>         TreePath p = new TreePath(new Object());
>         JTree t = new JTree();
>         assertNull(t.getExpandedDescendants(p));
>     }
> }

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