Class: Graph::Thingy
Overview
You know… THINGY!
Has a pointer back to its graph parent and attributes.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
Returns the value of attribute attributes.
-
#graph ⇒ Object
Returns the value of attribute graph.
Instance Method Summary collapse
-
#attributes? ⇒ Boolean
Does this thing have attributes?.
-
#initialize(graph) ⇒ Thingy
constructor
:nodoc:.
-
#initialize_copy(other) ⇒ Object
:nodoc:.
-
#label(name) ⇒ Object
Shortcut method to set the label attribute.
Constructor Details
#initialize(graph) ⇒ Thingy
:nodoc:
518 519 520 |
# File 'lib/graph.rb', line 518 def initialize graph # :nodoc: super graph, [] end |
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes
517 518 519 |
# File 'lib/graph.rb', line 517 def attributes @attributes end |
#graph ⇒ Object
Returns the value of attribute graph
517 518 519 |
# File 'lib/graph.rb', line 517 def graph @graph end |
Instance Method Details
#attributes? ⇒ Boolean
Does this thing have attributes?
539 540 541 |
# File 'lib/graph.rb', line 539 def attributes? not self.attributes.empty? end |
#initialize_copy(other) ⇒ Object
:nodoc:
522 523 524 525 |
# File 'lib/graph.rb', line 522 def initialize_copy other # :nodoc: super self.attributes = other.attributes.dup end |
#label(name) ⇒ Object
Shortcut method to set the label attribute.
530 531 532 533 534 |
# File 'lib/graph.rb', line 530 def label name attributes.reject! { |s| s =~ /^label =/ } attributes << "label = #{Graph.escape_label name}" self end |