DBVIEW
|
Public Member Functions | |
Node (String in_name) | |
void | setShape (String in_shape) |
void | setStyle (String in_style) |
void | setLabel (String in_label) |
void | setColor (String in_color) |
void | setFillColor (String in_color) |
String | toString () |
Static Public Member Functions | |
static String | generateName (String in_name) |
Private Attributes | |
String | __name = null |
String | __shape = null |
String | __style = null |
String | __label = null |
String | __color = null |
String | __bg_color = null |
org.dbview.utils.dot.Node.Node | ( | String | in_name | ) |
static String org.dbview.utils.dot.Node.generateName | ( | String | in_name | ) | [static] |
Create a unique, and valid (no spaces...), name for the node.
in_name | Original name. |
Exception |
Definition at line 74 of file Node.java.
Referenced by org.dbview.utils.dot.Node.Node(), org.dbview.utils.dot.Edge.setFrom(), and org.dbview.utils.dot.Edge.setTo().
void org.dbview.utils.dot.Node.setColor | ( | String | in_color | ) |
void org.dbview.utils.dot.Node.setFillColor | ( | String | in_color | ) |
void org.dbview.utils.dot.Node.setLabel | ( | String | in_label | ) |
void org.dbview.utils.dot.Node.setShape | ( | String | in_shape | ) |
void org.dbview.utils.dot.Node.setStyle | ( | String | in_style | ) |
String org.dbview.utils.dot.Node.toString | ( | ) |
String org.dbview.utils.dot.Node.__bg_color = null [private] |
Node's background color.
Definition at line 66 of file Node.java.
Referenced by org.dbview.utils.dot.Node.setFillColor(), and org.dbview.utils.dot.Node.toString().
String org.dbview.utils.dot.Node.__color = null [private] |
Node's foreground color.
Definition at line 60 of file Node.java.
Referenced by org.dbview.utils.dot.Node.setColor(), and org.dbview.utils.dot.Node.toString().
String org.dbview.utils.dot.Node.__label = null [private] |
Node's label.
Definition at line 54 of file Node.java.
Referenced by org.dbview.utils.dot.Node.setLabel(), and org.dbview.utils.dot.Node.toString().
String org.dbview.utils.dot.Node.__name = null [private] |
Name of the node.
Definition at line 36 of file Node.java.
Referenced by org.dbview.utils.dot.Node.Node(), and org.dbview.utils.dot.Node.toString().
String org.dbview.utils.dot.Node.__shape = null [private] |
Shape of the node.
Definition at line 42 of file Node.java.
Referenced by org.dbview.utils.dot.Node.setShape(), and org.dbview.utils.dot.Node.toString().
String org.dbview.utils.dot.Node.__style = null [private] |
Style of the node.
Definition at line 48 of file Node.java.
Referenced by org.dbview.utils.dot.Node.setStyle(), and org.dbview.utils.dot.Node.toString().