Package com.sun.j3d.utils.scenegraph.io

Examples of com.sun.j3d.utils.scenegraph.io.ObjectNotLoadedException


/* 709 */     if ((obj instanceof SceneGraphObject)) {
/* 710 */       return (SceneGraphObject)obj;
/*     */     }
/* 712 */     SymbolTableData symbol = getSymbol(((Integer)obj).intValue());
/* 713 */     if ((symbol == null) || (symbol.j3dNode == null))
/* 714 */       throw new ObjectNotLoadedException(((Integer)obj).toString());
/* 715 */     return symbol.j3dNode;
/*     */   }
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.scenegraph.io.ObjectNotLoadedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.