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:
534 535 536 |
# File 'lib/graph.rb', line 534 def initialize graph # :nodoc: super graph, [] end |
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes
533 534 535 |
# File 'lib/graph.rb', line 533 def attributes @attributes end |
#graph ⇒ Object
Returns the value of attribute graph
533 534 535 |
# File 'lib/graph.rb', line 533 def graph @graph end |
Instance Method Details
#attributes? ⇒ Boolean
Does this thing have attributes?
555 556 557 |
# File 'lib/graph.rb', line 555 def attributes? not self.attributes.empty? end |
#initialize_copy(other) ⇒ Object
:nodoc:
538 539 540 541 |
# File 'lib/graph.rb', line 538 def initialize_copy other # :nodoc: super self.attributes = other.attributes.dup end |
#label(name) ⇒ Object
Shortcut method to set the label attribute.
546 547 548 549 550 |
# File 'lib/graph.rb', line 546 def label name attributes.reject! { |s| s =~ /^label =/ } attributes << "label = #{Graph.escape_label name}" self end |