Class: Nxo::Dynamic::Symbol
- Inherits:
-
Object
- Object
- Nxo::Dynamic::Symbol
- Defined in:
- lib/nxo/dynamic.rb
Instance Attribute Summary collapse
-
#info ⇒ Object
readonly
Returns the value of attribute info.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#other ⇒ Object
readonly
Returns the value of attribute other.
-
#shndx ⇒ Object
readonly
Returns the value of attribute shndx.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name, info, other, shndx, value, size) ⇒ Symbol
constructor
A new instance of Symbol.
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
#info ⇒ Object (readonly)
Returns the value of attribute info.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def info @info end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def name @name end |
#other ⇒ Object (readonly)
Returns the value of attribute other.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def other @other end |
#shndx ⇒ Object (readonly)
Returns the value of attribute shndx.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def shndx @shndx end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def size @size end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
55 56 57 |
# File 'lib/nxo/dynamic.rb', line 55 def value @value end |