Package org.xj3d.sai
Interface Xj3DCADViewListener
public interface Xj3DCADViewListener
Listener for changes of structure related to CAD-specific content.
These callback methods provide information for changes within an existing scene. For bulk changes, such as the change of scene, please use the base browser listener interface from the SAI.
- Version:
- $Revision: 1.2 $
- Author:
- Justin Couch
-
Method Summary
Modifier and TypeMethodDescriptionvoid
assemblyAdded
(X3DNode assembly) Notification that an assembly was added to the root of the world.void
assemblyRemoved
(X3DNode assembly) Notification that an assembly was removed from the root of the world.void
layerAdded
(X3DNode layer) Notification that a CADLayer was added to the root of the world.void
layerRemoved
(X3DNode layer) Notification that a CADLayer was added to the root of the world.
-
Method Details
-
assemblyAdded
Notification that an assembly was added to the root of the world.- Parameters:
assembly
- The node instance that was added
-
assemblyRemoved
Notification that an assembly was removed from the root of the world.- Parameters:
assembly
- The node instance that was removed
-
layerAdded
Notification that a CADLayer was added to the root of the world.- Parameters:
layer
- The node instance that was added
-
layerRemoved
Notification that a CADLayer was added to the root of the world.- Parameters:
layer
- The node instance that was removed
-