Class: Nxo::Dynamic::Symbol

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, info, other, shndx, value, size) ⇒ Symbol

Returns a new instance of Symbol.



46
47
48
49
50
51
52
53
# File 'lib/nxo/dynamic.rb', line 46

def initialize(name, info, other, shndx, value, size)
  @name = name
  @info = info
  @other = other
  @shndx = shndx
  @value = value
  @size = size
end

Instance Attribute Details

#infoObject (readonly)

Returns the value of attribute info.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def info
  @info
end

#nameObject (readonly)

Returns the value of attribute name.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def name
  @name
end

#otherObject (readonly)

Returns the value of attribute other.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def other
  @other
end

#shndxObject (readonly)

Returns the value of attribute shndx.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def shndx
  @shndx
end

#sizeObject (readonly)

Returns the value of attribute size.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def size
  @size
end

#valueObject (readonly)

Returns the value of attribute value.



55
56
57
# File 'lib/nxo/dynamic.rb', line 55

def value
  @value
end