Class ArticulatedEdge<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.layout.util.synthetics.SEI<E>
-
- org.jungrapht.visualization.layout.algorithms.sugiyama.LEI<V,E>
-
- org.jungrapht.visualization.layout.algorithms.sugiyama.ArticulatedEdge<V,E>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Point>
intermediatePoints
protected List<LV<V>>
intermediateVertices
protected LE<V,E>
se
two synthetic edges are created by splitting an existing SE<V,E> edge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addIntermediatePoint(Point p)
void
addIntermediateVertex(LV<V> v)
boolean
equals(Object o)
List<Point>
getIntermediatePoints()
List<LV<V>>
getIntermediateVertices()
int
hashCode()
static <V,E>
ArticulatedEdgeof(LE<V,E> edge, LV<V> source, LV<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()
-
Methods inherited from class org.jungrapht.visualization.layout.algorithms.sugiyama.LEI
getSource, getTarget, swapped
-
-
-
-
Method Detail
-
of
public static <V,E> ArticulatedEdge of(LE<V,E> edge, LV<V> source, LV<V> target)
-
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
-
-