Uses of Class
wobs.scene3d.player.X3DNode

Packages that use X3DNode
wobs.scene3d.nodes   
wobs.scene3d.player   
 

Uses of X3DNode in wobs.scene3d.nodes
 

Subclasses of X3DNode in wobs.scene3d.nodes
 class Scene
          This class contains index constants to access fields in a Scene node using the X3DNode.getField(int fieldIndex) method.
 

Uses of X3DNode in wobs.scene3d.player
 

Subclasses of X3DNode in wobs.scene3d.player
 class X3DScene
          This class represent a X3D/VRML scene graph by acting as the root node for the scene graph hierarchy.
 

Fields in wobs.scene3d.player declared as X3DNode
 X3DNode X3DField.parent
          Deprecated. should use getParent() instead
 

Methods in wobs.scene3d.player that return X3DNode
 X3DNode[] X3DNode.getChildren()
          Retrieves the children nodes of this object.
 X3DNode X3DScene.getCurrentView()
          Creates a new Viewpoint node from the current view.
 X3DNode X3DField.getNode()
          Retrieves the X3DNode value (if the field type is SFNode or MFNode).
 X3DNode X3DNode.getNode(int fieldIndex)
          Retrieves the contained node in the specified field of this object.
 X3DNode X3DNode.getNode(java.lang.String name)
          Retrieves the node with the specified name by searching for it in this object's fields and sub-nodes.
 X3DNode[] X3DField.getNodeArray()
          Retrieves the X3DNode array(if the field type is MFNode).
 X3DNode X3DNode.getParent()
          Returns the parent node in the Scene graph of this node.
 

Methods in wobs.scene3d.player with parameters of type X3DNode
 void X3DNode.addChild(X3DNode node)
          Adds a node to the children field of this object.
 void X3DNode.removeChild(X3DNode node)
          Removes a node from the children field of this object.
 void X3DScene.setViewpoint(X3DNode viewpoint)
          Sets the current view to the specified viewpoint node.