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

[jira] Updated: (HARMONY-2419) [classlib][swing] JTree.DynamicUtilTreeNode.clone() returns DefaultMutableTreeNode object

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

Paulex Yang updated HARMONY-2419:
---------------------------------

    Summary: [classlib][swing] JTree.DynamicUtilTreeNode.clone() returns DefaultMutableTreeNode object  (was: [swing] JTree.DynamicUtilTreeNode.clone() returns DefaultMutableTreeNode object)

> [classlib][swing] JTree.DynamicUtilTreeNode.clone() returns DefaultMutableTreeNode object
> -----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2419
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2419
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Artem Aliev
>
> According to J2SE API 5.0 specifications of
> DefaultMutableTreeNode.clone() method: "Returns a shallow copy of this node;
> the new node has no parent or children and has a reference to the same user
> object, if any."
> javax.swing.JTree.DynamicUtilTreeNode.clone() returns
> javax.swing.tree.DefaultMutableTreeNode object while RI returns
> JTree.DynamicUtilTreeNode.
> Test for reprodicing:
> import junit.framework.TestCase;
> import javax.swing.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>         Object obj = new Object();
>         JTree.DynamicUtilTreeNode t = new JTree.DynamicUtilTreeNode(obj,obj);
>         Object cl = t.clone();
>         assertEquals(t.getClass(), cl.getClass());
>     }
> }
> Output on Sun 1.5
> =================
> .
> Time: 0.219
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 1.234
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: expected:<class
> javax.swing.JTree$DynamicUtilTreeNode> but was:<class java
> x.swing.tree.DefaultMutableTreeNode>
>         at Test.testcase1(Test.java:10)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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