Class: Connect::Entry::Reference

Inherits:
Base
  • Object
show all
Defined in:
lib/connect/entries/reference.rb

Overview

A class representing a reference entry in the values table. An instance of the class connect one entry to an other

Instance Attribute Summary

Attributes inherited from Base

#selector, #value, #xref

Instance Method Summary collapse

Methods inherited from Base

#add_reference, #final, #initialize, #merge!

Constructor Details

This class inherits a constructor from Connect::Entry::Base

Instance Method Details

#inspectObject



23
24
25
# File 'lib/connect/entries/reference.rb', line 23

def inspect
  "reference to #{@value}#{@selector}"
end

#to_extHash

Translate the object for external representation

Returns:

  • (Hash)

    a hash containing the name as key and the data as a [Hash]



17
18
19
20
21
# File 'lib/connect/entries/reference.rb', line 17

def to_ext
  value = Connect::Entry::Base.values_table.internal_lookup(@value).final
  # TODO: What if we have multiple references
  Connect::Selector.run(value, @selector)
end