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 2007/02/09 12:34:06 UTC

[jira] Updated: (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:all-tabpanel ]

Sergey Krivenko updated HARMONY-2618:
-------------------------------------

    Attachment: Harmony-2618-JTree.patch

the attached file is an updated patch

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