Class ArticulatedEdge<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.layout.util.synthetics.ArticulatedEdge<V,E>
-
public class ArticulatedEdge<V,E> extends Object
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ArticulatedEdge(E edge, V source, V target)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addIntermediatePoint(Point p)
void
addIntermediateVertex(V v)
boolean
equals(Object o)
E
getEdge()
List<Point>
getIntermediatePoints()
List<V>
getIntermediateVertices()
V
getSource()
V
getTarget()
int
hashCode()
static <V,E>
ArticulatedEdgeof(E edge, V source, V target)
ArticulatedEdge<V,E>
reversed()
reverse the direction and endpoints of this edge Done for reverting a feedback edge into its original formString
toString()
-
-
-
Method Detail
-
of
public static <V,E> ArticulatedEdge of(E edge, V source, V target)
-
getEdge
public E getEdge()
-
getSource
public V getSource()
-
getTarget
public V getTarget()
-
addIntermediateVertex
public void addIntermediateVertex(V v)
-
addIntermediatePoint
public void addIntermediatePoint(Point p)
-
reversed
public ArticulatedEdge<V,E> reversed()
reverse the direction and endpoints of this edge Done for reverting a feedback edge into its original form
-
-