Trees | Index | Help |
|
---|
Module gml :: Class gml_edge |
|
Method Summary | |
---|---|
Set the default attributes for the newly created edge. | |
Run a few basic tests to ensure the class is working. | |
Integer |
Get the identifier for the edges destination. |
Integer |
Get the unique identifier for the edges destination. |
String |
Get the arrow type for the edge from the graphics sub-header. |
HTML RGB string (ex: #CCFFCC) |
Get the fill color of the edge from the graphics sub-header. |
Float |
Get the line width for the edge from the graphics sub-header. |
Integer |
Get the stipple value for the edge from the graphics sub-header. |
String |
Get the shape for the edge from the graphics sub-header. |
Integer |
Get the generalization value for this edge. |
Integer |
Get the identifier for the edges source. |
Integer |
Get the unique identifier for the edges source. |
String |
Render an edge description suitable for use in a GML file using the set internal attributes. |
Set the identifier for the edges destination. | |
Set the unique identifier for the edges destination. | |
Set the arrow type for the edge in the graphics sub-header. | |
Set the fill color of the edge in the graphics sub-header. | |
Set the line width for the edge in the graphics sub-header. | |
Set the stipple value for the edge in the graphics sub-header. | |
Set the shape for the edge in the graphics sub-header. | |
Set the generalization value for the edge. | |
Set the identifier for the edges source. | |
Set the unique identifier for the edges source. |
Method Details |
---|
__init__(self)
Set the default attributes for the newly created edge. See the
source if you want to modify the default creation values.
|
__module_test__(self)Run a few basic tests to ensure the class is working. |
get_dst_id(self)Get the identifier for the edges destination. This identifier can *not* be assumed to be unique. See get_dst_uid().
|
get_dst_uid(self)Get the unique identifier for the edges destination. The dst_id member variable stores the original value from the GML file. The purpose of the UID is to uniquely identify the edge destination among a list of loaded edges that may potentially have overlapping IDs. The parser class will automatically assign an incremented value.
|
get_g_arrow(self)Get the arrow type for the edge from the graphics sub-header.
|
get_g_fill(self)Get the fill color of the edge from the graphics sub-header.
|
get_g_line_width(self)Get the line width for the edge from the graphics sub-header.
|
get_g_stipple(self)Get the stipple value for the edge from the graphics sub-header.
|
get_g_type(self)Get the shape for the edge from the graphics sub-header. For the purposes of Process Stalker this value will be "line".
|
get_generalization(self)Get the generalization value for this edge.
|
get_src_id(self)Get the identifier for the edges source. This identifier can *not* be assumed to be unique. See get_src_uid().
|
get_src_uid(self)Get the unique identifier for the edges source. The src_id member variable stores the original value from the GML file. The purpose of the UID is to uniquely identify the edge source among a list of loaded edges that may potentially have overlapping IDs. The parser class will automatically assign an incremented value.
|
render(self)Render an edge description suitable for use in a GML file using the set internal attributes.
|
set_dst_id(self, id)Set the identifier for the edges destination. This identifier can *not* be assumed to be unique. See set_dst_uid().
|
set_dst_uid(self, uid)Set the unique identifier for the edges destination. The dst_id member variable stores the original value from the GML file. The purpose of the UID is to uniquely identify the edge destination among a list of loaded edges that may potentially have overlapping IDs. The parser class will automatically assign an incremented value.
|
set_g_arrow(self, arrow)Set the arrow type for the edge in the graphics sub-header.
|
set_g_fill(self, color)Set the fill color of the edge in the graphics sub-header.
|
set_g_line_width(self, pixels)Set the line width for the edge in the graphics sub-header.
|
set_g_stipple(self, stipple)Set the stipple value for the edge in the graphics sub-header.
|
set_g_type(self, type)Set the shape for the edge in the graphics sub-header. For the purposes of Process Stalker this value will be "line".
|
set_generalization(self, generalization)Set the generalization value for the edge.
|
set_src_id(self, id)Set the identifier for the edges source. This identifier can *not* be assumed to be unique. See get_src_uid().
|
set_src_uid(self, uid)Set the unique identifier for the edges source. The src_id member variable stores the original value from the GML file. The purpose of the UID is to uniquely identify the edge source among a list of loaded edges that may potentially have overlapping IDs. The parser class will automatically assign an incremented value.
|
Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Tue Jul 05 12:05:31 2005 | http://epydoc.sf.net |