|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4graph.GraphEdge
public final class GraphEdge
Mutable; represents a graphical edge.
Thread Safety: Can be called only by the AWT event thread.
Field Summary | |
---|---|
java.lang.Object |
group
a user-provided annotation that will be associated with this edge (all edges with same group will be highlighted together) |
java.lang.Object |
uuid
a user-provided annotation that will be associated with this edge (can be null) (need not be unique) |
Constructor Summary | |
---|---|
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. |
Method Summary | |
---|---|
GraphNode |
a()
Returns the "from" node. |
boolean |
ahead()
Returns true if we will draw an arrow head on the "from" node. |
GraphNode |
b()
Returns the "to" node. |
boolean |
bhead()
Returns true if we will draw an arrow head on the "to" node. |
java.awt.Color |
color()
Returns the line color; never null. |
int |
getLabelH()
Return the height of the label box. |
int |
getLabelW()
Return the width of the label box. |
int |
getLabelX()
Return the X coordinate of the top-left corner of the label box. |
int |
getLabelY()
Return the Y coordinate of the top-left corner of the label box. |
java.lang.String |
label()
Returns the label on this edge. |
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 |
set(java.awt.Color color)
Sets the line color. |
GraphEdge |
set(DotStyle style)
Sets the line style. |
GraphEdge |
set(int weightBetween1And10000)
Sets the edge weight between 1 and 10000. |
DotStyle |
style()
Returns the line style; never null. |
java.lang.String |
toString()
Returns a DOT representation of this edge (or "" if the start node is a dummy node) |
int |
weight()
Returns the edge weight (which is always between 1 and 10000 inclusively). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final java.lang.Object uuid
public final java.lang.Object group
Constructor Detail |
---|
public GraphEdge(GraphNode from, GraphNode to, java.lang.Object uuid, java.lang.String label, java.lang.Object group)
Method Detail |
---|
public GraphNode a()
public GraphNode b()
public int getLabelX()
public int getLabelY()
public int getLabelW()
public int getLabelH()
public int weight()
public DotStyle style()
public java.awt.Color color()
public boolean ahead()
public boolean bhead()
public java.lang.String label()
public GraphEdge set(int weightBetween1And10000)
public GraphEdge set(boolean from, boolean to)
public GraphEdge set(DotStyle style)
public GraphEdge set(java.awt.Color color)
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 |