Class: Wardite::TableSection
Instance Attribute Summary collapse
-
#table_limits ⇒ Object
: Array[[Integer, Integer?]].
-
#table_types ⇒ Object
: Array.
Attributes inherited from Section
Instance Method Summary collapse
-
#initialize ⇒ TableSection
constructor
A new instance of TableSection.
Constructor Details
#initialize ⇒ TableSection
Returns a new instance of TableSection.
45 46 47 48 49 50 51 |
# File 'lib/wardite/load.rb', line 45 def initialize self.name = "Table" self.code = 0x4 @table_types = [] @table_limits = [] end |
Instance Attribute Details
#table_limits ⇒ Object
: Array[[Integer, Integer?]]
42 43 44 |
# File 'lib/wardite/load.rb', line 42 def table_limits @table_limits end |
#table_types ⇒ Object
: Array
40 41 42 |
# File 'lib/wardite/load.rb', line 40 def table_types @table_types end |