Uses of Interface
annas.graph.WeightedInterface

Packages that use WeightedInterface
annas.graph   
 

Uses of WeightedInterface in annas.graph
 

Classes in annas.graph that implement WeightedInterface
 class DefaultWeight
          Default implementation of WeightedInterface
 

Methods in annas.graph that return WeightedInterface
 WeightedInterface DefaultArc.getWeightedInterface()
          Gets the Weight function
 WeightedInterface ArcInterface.getWeightedInterface()
          Gets the Weight function
 

Methods in annas.graph with parameters of type WeightedInterface
 boolean UndirectedGraph.addArc(N tail, N head, WeightedInterface wi)
          Adds an arc to the graph, adds to directed arcs to the graph.
 boolean Graph.addArc(N tail, N head, WeightedInterface wi)
           
 boolean GraphInterface.addArc(N tail, N head, WeightedInterface wi)
          Adds an arc to the graph
 DefaultArc<N> DefaultArcFactory.create(N tail, N head, WeightedInterface wi)
          Creates an arc of type A
 A ArcFactory.create(N tail, N head, WeightedInterface wi)
          Creates an arc of type A
 void DefaultArc.setWeight(WeightedInterface wi)
          Sets the Weight function
 void ArcInterface.setWeight(WeightedInterface wi)
          Sets the Weight function
 

Constructors in annas.graph with parameters of type WeightedInterface
DefaultArc(N tail, N head, WeightedInterface wi)
          Constructor