01: package org.enhydra.jawe.components.graph;
02:
03: import org.jgraph.graph.Edge;
04: import org.jgraph.graph.EdgeView;
05:
06: /**
07: * Used to define Transition object in the graph.
08: */
09: public class NoRouting implements Edge.Routing {
10: public void route(EdgeView edge, java.util.List points) {
11: //
12: }
13: }
|