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 protectedArticulatedEdge(E edge, V source, V target) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddIntermediatePoint(Point p)voidaddIntermediateVertex(V v)booleanequals(Object o)EgetEdge()List<Point>getIntermediatePoints()List<V>getIntermediateVertices()VgetSource()VgetTarget()inthashCode()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 formStringtoString() 
 - 
 
- 
- 
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 
 - 
 
 -