com.sun.j3d.utils.scenegraph.io.state.com.sun.j3d.utils.geometry
Class ConeState

java.lang.Object
  extended by com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.SceneGraphObjectState
      extended by com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.NodeState
          extended by com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.GroupState
              extended by com.sun.j3d.utils.scenegraph.io.state.com.sun.j3d.utils.geometry.PrimitiveState
                  extended by com.sun.j3d.utils.scenegraph.io.state.com.sun.j3d.utils.geometry.ConeState

public class ConeState
extends PrimitiveState


Constructor Summary
ConeState(SymbolTableData symbol, Controller control)
           
 
Method Summary
 void buildGraph()
          Subclasses should processes their own buildGraph requirements BEFORE calling super.buildGraph().
 javax.media.j3d.SceneGraphObject createNode(java.lang.Class j3dClass)
          Create a new Java3D node from the supplied class using the parameterless constructor For Java3D nodes which do not have a default constructor you must overload this method and create the object using createNode( className, parameters ) This will correctly handle subclasses of Java3D classes
 void readConstructorParams(java.io.DataInput in)
          Read the parameters required for the constructor of the Java3D object
 void readObject(java.io.DataInput in)
           
 void writeConstructorParams(java.io.DataOutput out)
          Write the parameters required for the constructor of the Java3D object
 void writeObject(java.io.DataOutput out)
          DO NOT call symbolTable.addReference in writeObject as this (may) result in a concurrentModificationException.
 
Methods inherited from class com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.GroupState
cleanup
 
Methods inherited from class com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.SceneGraphObjectState
getNode, getNodeID, getSymbol
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConeState

public ConeState(SymbolTableData symbol,
                 Controller control)
Method Detail

writeObject

public void writeObject(java.io.DataOutput out)
                 throws java.io.IOException
Description copied from class: SceneGraphObjectState
DO NOT call symbolTable.addReference in writeObject as this (may) result in a concurrentModificationException. All references should be created in the constructor

Overrides:
writeObject in class GroupState
Throws:
java.io.IOException

readObject

public void readObject(java.io.DataInput in)
                throws java.io.IOException
Overrides:
readObject in class GroupState
Throws:
java.io.IOException

writeConstructorParams

public void writeConstructorParams(java.io.DataOutput out)
                            throws java.io.IOException
Description copied from class: SceneGraphObjectState
Write the parameters required for the constructor of the Java3D object

Overrides:
writeConstructorParams in class PrimitiveState
Throws:
java.io.IOException

readConstructorParams

public void readConstructorParams(java.io.DataInput in)
                           throws java.io.IOException
Description copied from class: SceneGraphObjectState
Read the parameters required for the constructor of the Java3D object

Overrides:
readConstructorParams in class PrimitiveState
Throws:
java.io.IOException

buildGraph

public void buildGraph()
Description copied from class: SceneGraphObjectState
Subclasses should processes their own buildGraph requirements BEFORE calling super.buildGraph(). This ensures that when restoreSceneGraphObjectReferences is called in user code our references have been resolved

Overrides:
buildGraph in class PrimitiveState

createNode

public javax.media.j3d.SceneGraphObject createNode(java.lang.Class j3dClass)
Description copied from class: SceneGraphObjectState
Create a new Java3D node from the supplied class using the parameterless constructor For Java3D nodes which do not have a default constructor you must overload this method and create the object using createNode( className, parameters ) This will correctly handle subclasses of Java3D classes