Class: Connect::Entry::ObjectReference

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

Overview

A class representing a object entry in the values table.

Instance Attribute Summary collapse

Attributes inherited from Base

#value, #xref

Instance Method Summary collapse

Methods inherited from Base

#add_reference, #final, #merge!

Constructor Details

#initialize(type, name, selector = nil, xref = nil) ⇒ ObjectReference

Returns a new instance of ObjectReference.



12
13
14
15
16
17
# File 'lib/connect/entries/object_reference.rb', line 12

def initialize(type, name, selector = nil, xref = nil)
  @type     = type
  @name     = name
  @selector = selector
  @xref     = xref
end

Instance Attribute Details

#selectorObject

Returns the value of attribute selector.



10
11
12
# File 'lib/connect/entries/object_reference.rb', line 10

def selector
  @selector
end

Instance Method Details

#to_extHash

Translate the object for external representation

Returns:

  • (Hash)

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



25
26
27
28
# File 'lib/connect/entries/object_reference.rb', line 25

def to_ext
  value = Connect::Entry::Base.objects_table.lookup(@type, @name).full_representation
  Connect::Selector.run(value, @selector)
end