Class dnx.lr.Route
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class dnx.lr.Route

java.lang.Object
   |
   +----dnx.util.DNXObject
           |
           +----dnx.util.DNXInstancedObject
                   |
                   +----dnx.lr.Route

public class Route
extends DNXInstancedObject
A route is a Moving Worlds concept that connects an EventOut to an EventIn -- when an EventOut is generated on one end of the route, its value is used to generate the EventIn on the other end. This is used, for example, to ensure that different parts of the scene graph stay in sync.

Constructor Index

 o Route(Node, int, Node, int)

Method Index

 o getEventInIndex()
 o getEventOutIndex()
 o getReceiver()
 o getSender()
 o isInvisible()
 o print(PrintAction)
 o read(ReadAction)
Parse and create a new Route -- this looks for the "ROUTE foo TO bar" syntax in a VRML file.
 o toString()

Constructors

 o Route
  public Route(Node fromNode,
               int outEvent,
               Node toNode,
               int inEvent)

Methods

 o read
  public static Route read(ReadAction a) throws IOException, VRMLSyntaxException
Parse and create a new Route -- this looks for the "ROUTE foo TO bar" syntax in a VRML file.
 o print
  public void print(PrintAction a)
 o getSender
  public Node getSender()
 o getReceiver
  public Node getReceiver()
 o getEventOutIndex
  public int getEventOutIndex()
 o getEventInIndex
  public int getEventInIndex()
 o isInvisible
  public boolean isInvisible()
 o toString
  public String toString()
Overrides:
toString in class DNXInstancedObject

All Packages  Class Hierarchy  This Package  Previous  Next  Index