KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > jawe > graph > Route


1 /* Route.java
2  *
3  * Authors:
4  * Stefanovic Nenad chupo@iis.ns.ac.yu
5  * Bojanic Sasa sasaboy@neobee.net
6  * Puskas Vladimir vpuskas@eunet.yu
7  * Pilipovic Goran zboniek@uns.ac.yu
8  *
9  */

10
11 package org.enhydra.jawe.graph;
12
13 import org.jgraph.graph.*;
14
15 import java.util.*;
16 import java.awt.*;
17
18 /**
19 * Used to define Route object in the graph and to modify it's
20 * properties.
21 */

22 public class Route extends Activity {
23
24    /**
25    * Creates route.
26    */

27    public Route() {
28       this(null);
29    }
30
31    /**
32    * Creates Route with given userObject.
33    */

34    public Route(Object JavaDoc userObject) {
35       super(userObject);
36    }
37
38 }
39
40 /* End of Route.java */
41
Popular Tags