All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.media.j3d.DanglingReferenceException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.media.j3d.DanglingReferenceException

public class DanglingReferenceException
extends RuntimeException
During a cloneTree call an updated reference was requested for a node that did not get cloned. This happens when a sub-graph is duplicated via cloneTree and has at least one Leaf node that contains a reference to a Node that has no corresponding node in the cloned sub-graph. This results in two Leaf nodes wanting to share access to the same Node.

If dangling references are to be allowed during the cloneTree call, cloneTree should be called with the allowDanglingReferences parameter set to true.

See Also:
cloneTree

Constructor Index

 o DanglingReferenceException()
Create the exception object with default values.
 o DanglingReferenceException(String)
Create the exception object that outputs message.

Constructors

 o DanglingReferenceException
 public DanglingReferenceException()
Create the exception object with default values.

 o DanglingReferenceException
 public DanglingReferenceException(String str)
Create the exception object that outputs message.

Parameters:
str - the message string to be output.

All Packages  Class Hierarchy  This Package  Previous  Next  Index