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

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


/*     */   public SceneGraphObject getNamedObject(String name)
/*     */     throws NamedObjectException, ObjectNotLoadedException
/*     */   {
/* 705 */     Object obj = this.namedObjects.get(name);
/* 706 */     if (obj == null) {
/* 707 */       throw new NamedObjectException("Unknown name :" + name);
/*     */     }
/* 709 */     if ((obj instanceof SceneGraphObject)) {
/* 710 */       return (SceneGraphObject)obj;
/*     */     }
/* 712 */     SymbolTableData symbol = getSymbol(((Integer)obj).intValue());
View Full Code Here

TOP

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

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.