net.sf.javagimmicks.graph.DefaultEdge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
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