Class: Graph::Thingy

Inherits:
Struct show all
Defined in:
lib/graph.rb

Overview

You know… THINGY!

Has a pointer back to its graph parent and attributes.

Direct Known Subclasses

Edge, Node

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(graph) ⇒ Thingy

:nodoc:



508
509
510
# File 'lib/graph.rb', line 508

def initialize graph # :nodoc:
  super graph, []
end

Instance Attribute Details

#attributesObject

Returns the value of attribute attributes

Returns:

  • (Object)

    the current value of attributes



507
508
509
# File 'lib/graph.rb', line 507

def attributes
  @attributes
end

#graphObject

Returns the value of attribute graph

Returns:

  • (Object)

    the current value of graph



507
508
509
# File 'lib/graph.rb', line 507

def graph
  @graph
end

Instance Method Details

#attributes?Boolean

Does this thing have attributes?

Returns:

  • (Boolean)


529
530
531
# File 'lib/graph.rb', line 529

def attributes?
  not self.attributes.empty?
end

#initialize_copy(other) ⇒ Object

:nodoc:



512
513
514
515
# File 'lib/graph.rb', line 512

def initialize_copy other # :nodoc:
  super
  self.attributes = other.attributes.dup
end

#label(name) ⇒ Object

Shortcut method to set the label attribute.



520
521
522
523
524
# File 'lib/graph.rb', line 520

def label name
  attributes.reject! { |s| s =~ /^label =/ }
  attributes << "label = #{Graph.escape_label name}"
  self
end