DBVIEW
org.dbview.utils.dot.Edge Class Reference

List of all members.

Public Member Functions

void setInvisible ()
void setLtail (String in_value)
void setLhead (String in_value)
void setColor (String in_value)
void setPenwidth (String in_value)
void setFrom (String in_value)
void setTo (String in_value)
void setArrowhead (String in_value)
void setArrowtail (String in_value)
String toString ()

Private Attributes

String __from = null
String __to = null
String __ltail = null
String __lhead = null
String __color = null
String __penwidth = null
String __arrowtail = null
String __arrowhead = null
Boolean __edge_visible = Boolean.TRUE

Detailed Description

This class represents an edge.

Author:
Denis Beurive

Definition at line 30 of file Edge.java.


Member Function Documentation

void org.dbview.utils.dot.Edge.setArrowhead ( String  in_value)

This method defines the appearance of the head of the edge.

Parameters:
in_valueHead's appearance.

Definition at line 135 of file Edge.java.

void org.dbview.utils.dot.Edge.setArrowtail ( String  in_value)

This method defines the appearance of the tail of the edge.

Parameters:
in_valueTail's appearance.

Definition at line 141 of file Edge.java.

void org.dbview.utils.dot.Edge.setColor ( String  in_value)

This method sets the edge's color.

Parameters:
in_valuethe color to set.

Definition at line 105 of file Edge.java.

void org.dbview.utils.dot.Edge.setFrom ( String  in_value)

Set the origin of the edge. Please note that the edge may not originate from the element, if you set the edge's tail.

Parameters:
in_valueName of the element that represents the origin of the edge.

Definition at line 117 of file Edge.java.

void org.dbview.utils.dot.Edge.setInvisible ( )

Set the edge invisible.

Definition at line 84 of file Edge.java.

void org.dbview.utils.dot.Edge.setLhead ( String  in_value)

This method sets the position of the edge's head.

Parameters:
in_valueName of the element that the edge's head is attached to.

Definition at line 99 of file Edge.java.

void org.dbview.utils.dot.Edge.setLtail ( String  in_value)

This method sets the position of the edge's tail.

Parameters:
in_valueName of the element that the edge's tail is attached to.

Definition at line 93 of file Edge.java.

void org.dbview.utils.dot.Edge.setPenwidth ( String  in_value)

This method sets the width of the line used to draw the edge.

Parameters:
in_valueThe width to set.

Definition at line 111 of file Edge.java.

void org.dbview.utils.dot.Edge.setTo ( String  in_value)

Name of the element that represents the edge's destination. Please note that the edge may not end to the element, if you set the edge's head.

Parameters:
in_valueName of the element that represents the edge's destination.

Definition at line 126 of file Edge.java.

String org.dbview.utils.dot.Edge.toString ( )

This method returns a DOT's representation of the edge.

Returns:
The method returns a DOT's representation of the edge.

Definition at line 147 of file Edge.java.


Member Data Documentation

String org.dbview.utils.dot.Edge.__arrowhead = null [private]

See GRAPHVIZ' documentation for "arrowhead".

See also:
http://www.graphviz.org/doc/info/attrs.html

Definition at line 74 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setArrowhead(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__arrowtail = null [private]

See GRAPHVIZ' documentation for "arrowtail".

See also:
http://www.graphviz.org/doc/info/attrs.html

Definition at line 68 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setArrowtail(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__color = null [private]

Color of the edge.

Definition at line 57 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setColor(), and org.dbview.utils.dot.Edge.toString().

Boolean org.dbview.utils.dot.Edge.__edge_visible = Boolean.TRUE [private]

Is the edge visible?

Definition at line 79 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setInvisible(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__from = null [private]

Beginning of the edge.

Definition at line 35 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setFrom(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__lhead = null [private]

See GRAPHVIZ' documentation for "lhead".

See also:
http://www.graphviz.org/doc/info/attrs.html

Definition at line 52 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setLhead(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__ltail = null [private]

See GRAPHVIZ' documentation for "ltail".

See also:
http://www.graphviz.org/doc/info/attrs.html

Definition at line 46 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setLtail(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__penwidth = null [private]

width of the edge.

Definition at line 62 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setPenwidth(), and org.dbview.utils.dot.Edge.toString().

String org.dbview.utils.dot.Edge.__to = null [private]

End of the edge.

Definition at line 40 of file Edge.java.

Referenced by org.dbview.utils.dot.Edge.setTo(), and org.dbview.utils.dot.Edge.toString().


The documentation for this class was generated from the following file: