/* */ 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());