Gephi Toolkit Javadoc

org.gephi.preview.api
Interface DirectedEdge

All Superinterfaces:
Edge
All Known Subinterfaces:
BidirectionalEdge, UnidirectionalEdge

public interface DirectedEdge
extends Edge

Interface of a preview edge.

Author:
Jérémy Subtil

Method Summary
 java.lang.Iterable<EdgeArrow> getArrows()
          Returns an iterable on the arrow list of the edge.
 java.lang.Iterable<EdgeMiniLabel> getMiniLabels()
          Returns an iterable on the mini-label list of the edge.
 java.lang.Boolean showArrows()
          Returns whether or not the edge's arrows should be displayed.
 java.lang.Boolean showMiniLabels()
          Returns whether or not the edge's mini-labels should be displayed.
 
Methods inherited from interface org.gephi.preview.api.Edge
getColor, getCurves, getLabel, getNode1, getNode2, getOriginalColor, getScale, getThickness, hasLabel, isCurved, showLabel
 

Method Detail

getArrows

java.lang.Iterable<EdgeArrow> getArrows()
Returns an iterable on the arrow list of the edge.

Returns:
an iterable on the arrow list of the edge

getMiniLabels

java.lang.Iterable<EdgeMiniLabel> getMiniLabels()
Returns an iterable on the mini-label list of the edge.

Returns:
an iterable on the mini-label list of the edge

showArrows

java.lang.Boolean showArrows()
Returns whether or not the edge's arrows should be displayed.

Returns:
true if the edge's arrows should be displayed

showMiniLabels

java.lang.Boolean showMiniLabels()
Returns whether or not the edge's mini-labels should be displayed.

Returns:
true if the edge's mini-labels should be displayed

Gephi Toolkit Javadoc