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.
44 45 46 47 48 49 50 |
# File 'lib/wardite/load.rb', line 44 def initialize self.name = "Table" self.code = 0x4 @table_types = [] @table_limits = [] end |
Instance Attribute Details
#table_limits ⇒ Object
: Array[[Integer, Integer?]]
41 42 43 |
# File 'lib/wardite/load.rb', line 41 def table_limits @table_limits end |
#table_types ⇒ Object
: Array
39 40 41 |
# File 'lib/wardite/load.rb', line 39 def table_types @table_types end |