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

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

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

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

Methods in edu.mit.csail.sdg.alloy4graph that return GraphNode
 GraphNode GraphEdge.a()
          Returns the "from" node.
 GraphNode GraphNode.addLabel(java.lang.String label)
          Add the given label after the existing labels, then invalidate the computed bounds.
 GraphNode GraphEdge.b()
          Returns the "to" node.
 GraphNode GraphNode.set(java.awt.Color color)
          Changes the node color, then invalidate the computed bounds.
 GraphNode GraphNode.set(DotShape shape)
          Changes the node shape (where null means change the node into a dummy node), then invalidate the computed bounds.
 GraphNode GraphNode.set(DotStyle style)
          Changes the line style, then invalidate the computed bounds.
 GraphNode GraphNode.setFontBoldness(boolean bold)
          Changes the font boldness, then invalidate the computed bounds.
 

Constructors in edu.mit.csail.sdg.alloy4graph with parameters of type GraphNode
GraphEdge(GraphNode from, GraphNode to, java.lang.Object uuid, java.lang.String label, java.lang.Object group)
          Construct an edge from "from" to "to", then add the edge to the graph.