1 Reply Latest reply on May 31, 2007 9:44 AM by manik

    Node Cloning

    karnivas

      Node root=tree1.getRoot();
      Node cloneNode = new Node();
      cloneNode = (Node)root.clone();

      This throws a classCast Exception, what is wrong in implementation ?

      How can i clone a specific node ??