Uses of Class
edu.mit.csail.sdg.alloy4graph.GraphEdge

Packages that use GraphEdge
edu.mit.csail.sdg.alloy4graph This package performs graph layout. 
 

Uses of GraphEdge in edu.mit.csail.sdg.alloy4graph
 

Fields in edu.mit.csail.sdg.alloy4graph with type parameters of type GraphEdge
 java.util.List<GraphEdge> Graph.edges
          An unmodifiable view of the list of edges.
 

Methods in edu.mit.csail.sdg.alloy4graph that return GraphEdge
 GraphEdge GraphEdge.set(boolean from, boolean to)
          Sets whether we will draw an arrow head on the "from" node, and whether we will draw an arrow head on the "to" node.
 GraphEdge GraphEdge.set(java.awt.Color color)
          Sets the line color.
 GraphEdge GraphEdge.set(DotStyle style)
          Sets the line style.
 GraphEdge GraphEdge.set(int weightBetween1And10000)
          Sets the edge weight between 1 and 10000.
 

Methods in edu.mit.csail.sdg.alloy4graph that return types with arguments of type GraphEdge
 java.util.List<GraphEdge> GraphNode.inEdges()
          Returns an unmodifiable view of the list of "in" edges.
 java.util.List<GraphEdge> GraphNode.outEdges()
          Returns an unmodifiable view of the list of "out" edges.
 java.util.List<GraphEdge> GraphNode.selfEdges()
          Returns an unmodifiable view of the list of "self" edges.