|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4graph.Graph
public final class Graph
Mutable; represents a graph.
Thread Safety: Can be called only by the AWT event thread.
Field Summary | |
---|---|
java.util.List<GraphEdge> |
edges
An unmodifiable view of the list of edges. |
java.util.List<GraphNode> |
nodes
An unmodifiable view of the list of nodes. |
Constructor Summary | |
---|---|
Graph(double defaultScale)
Constructs an empty Graph object. |
Method Summary | |
---|---|
void |
addLegend(java.lang.Comparable<?> object,
java.lang.String label,
java.awt.Color color)
Add a legend with the given object and the associated text label; if color==null, that means we will still add this legend into the list of legends, but this legend will be hidden. |
java.lang.Object |
find(double scale,
int mouseX,
int mouseY)
Locates the node or edge at the given (X,Y) location. |
int |
getLeft()
Assuming layout() has been called, this returns the left edge. |
int |
getTop()
Assuming layout() has been called, this returns the top edge. |
int |
getTotalHeight()
Assuming layout() has been called, this returns the total height. |
int |
getTotalWidth()
Assuming layout() has been called, this returns the total width. |
void |
layout()
(Re-)perform the layout. |
java.lang.String |
toString()
Returns a DOT representation of this graph. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final java.util.List<GraphNode> nodes
public final java.util.List<GraphEdge> edges
Constructor Detail |
---|
public Graph(double defaultScale)
Method Detail |
---|
public int getLeft()
public int getTop()
public int getTotalWidth()
public int getTotalHeight()
public void addLegend(java.lang.Comparable<?> object, java.lang.String label, java.awt.Color color)
public void layout()
public java.lang.Object find(double scale, int mouseX, int mouseY)
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |