Class: Nxo::Dynamic::Entry

Inherits:
Object
  • Object
show all
Defined in:
lib/nxo/dynamic.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nxo, tag, value) ⇒ Entry

Returns a new instance of Entry.



35
36
37
38
39
# File 'lib/nxo/dynamic.rb', line 35

def initialize(nxo, tag, value)
  @nxo = nxo
  @tag = tag
  @value = value
end

Instance Attribute Details

#nxoObject (readonly)

Returns the value of attribute nxo.



41
42
43
# File 'lib/nxo/dynamic.rb', line 41

def nxo
  @nxo
end

#tagObject (readonly)

Returns the value of attribute tag.



41
42
43
# File 'lib/nxo/dynamic.rb', line 41

def tag
  @tag
end

#valueObject (readonly)

Returns the value of attribute value.



41
42
43
# File 'lib/nxo/dynamic.rb', line 41

def value
  @value
end