All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.javagimmicks.graph.DefaultEdge Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
package net.sf.javagimmicks.graph;

/**
 * A default implementation of {@link Edge}, {@link DirectedEdge} and
 * {@link WeightedEdge}.
 */
public class DefaultEdge extends AbstractDefaultEdge>
{
   /**
    * Creates a new instance for the given {@link Graph}, source vertex and
    * target vertex.
    * 
    * @param graph
    *           the {@link Graph} to create the instance for
    * @param source
    *           the source vertex
    * @param target
    *           the target vertex
    */
   public DefaultEdge(final Graph> graph, final VertexType source,
         final VertexType target)
   {
      super(graph, source, target);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy