Package org.web3d.vrml.lang
Interface ROUTE
- All Known Implementing Classes:
CRROUTE
,ProtoROUTE
public interface ROUTE
Representation of a ROUTE.
A route belongs to a specific execution space, whether that be the main world or a proto or inline contained within that world. The information about the execution space is not contained in this route as that is expected to be set, along with this route, in the route manager.
- Version:
- $Revision: 1.3 $
- Author:
- Justin Couch
-
Method Summary
Modifier and TypeMethodDescriptionint
Get the index of the destination field of this route.Get the reference to the destination node of this route.int
Get the index of the source field of this route.Get the reference to the source node of this route.
-
Method Details
-
getSourceNode
VRMLNode getSourceNode()Get the reference to the source node of this route.- Returns:
- The source node reference
-
getSourceIndex
int getSourceIndex()Get the index of the source field of this route.- Returns:
- The source node field index
-
getDestinationNode
VRMLNode getDestinationNode()Get the reference to the destination node of this route.- Returns:
- The destination node reference
-
getDestinationIndex
int getDestinationIndex()Get the index of the destination field of this route.- Returns:
- The destination node field index
-