Uses of Class
gps.network.graph.Link

Packages that use Link
gps.network Provides network related informaiton. 
gps.network.graph Provides graph topology representative. 
 

Uses of Link in gps.network
 

Methods in gps.network that return Link
 Link Connection.findBottleNeck(boolean forward)
          finds bottle neck along links
 Link Topology.getLinkBetween(Node node1, Node node2)
          gets link between two directly connected nodes
 Link[] Topology.getLinks()
          gets all links
 Link[] Topology.getLinksBetween(Node node1, Node node2)
          gets links between two nodes, which may or may not connect to each other
 

Methods in gps.network with parameters of type Link
 double Topology.getAvailableBandwidth(Link l)
          gets available bandwidth of a link
 double Topology.getBandwidth(Link l)
          gets bandwidth of a link
 

Constructors in gps.network with parameters of type Link
BandwidthManager(Link l)
          constructor initiates a bandwidth on link
 

Uses of Link in gps.network.graph
 

Methods in gps.network.graph that return Link
 Link[] Graph.getAllLinks()
          gets all links
 Link Graph.getLink(int key)
          gets link
 Link Node.getLinkTo(Node n)
          gets link to another node
 Link Graph.newDirectedLink(int fromNode, int toNode)
          adds directed link
 Link Graph.newUndirectedLink(int fromNode, int toNode)
          adds undirected link
 

Methods in gps.network.graph with parameters of type Link
 int Graph.addLink(Link l)
          add link
 void Node.hasLinkTo(Node n, Link l)
          add a link between this node and another node