📄 danglingreferenceexception.java
字号:
/* * $RCSfile: DanglingReferenceException.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.4 $ * $Date: 2007/02/09 17:17:56 $ * $State: Exp $ */package javax.media.j3d;/** * During a <code>cloneTree</code> call an updated reference was requested * for a node that did not get cloned. This happens when a sub-graph is * duplicated via <code>cloneTree</code> 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. * <P> * If dangling references are to be allowed during the cloneTree call, * <code>cloneTree</code> should be called with the * <code>allowDanglingReferences</code> parameter set to <code>true</code>. * @see Node#cloneTree */public class DanglingReferenceException extends RuntimeException { /** * Create the exception object with default values. */ public DanglingReferenceException() { } /** * Create the exception object that outputs message. * @param str the message string to be output. */ public DanglingReferenceException(String str) { super(str); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -