Class: Unresponsys::SupplementalTable
- Extended by:
- Forwardable
- Defined in:
- lib/unresponsys/supplemental_table.rb
Defined Under Namespace
Classes: Rows
Instance Attribute Summary collapse
-
#folder ⇒ Object
readonly
Returns the value of attribute folder.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #extension_table? ⇒ Boolean
-
#initialize(folder, table_name) ⇒ SupplementalTable
constructor
A new instance of SupplementalTable.
- #rows ⇒ Object
- #supplemental_table? ⇒ Boolean
Constructor Details
#initialize(folder, table_name) ⇒ SupplementalTable
Returns a new instance of SupplementalTable.
7 8 9 10 |
# File 'lib/unresponsys/supplemental_table.rb', line 7 def initialize(folder, table_name) @folder = folder @name = table_name end |
Instance Attribute Details
#folder ⇒ Object (readonly)
Returns the value of attribute folder.
5 6 7 |
# File 'lib/unresponsys/supplemental_table.rb', line 5 def folder @folder end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/unresponsys/supplemental_table.rb', line 5 def name @name end |
Instance Method Details
#extension_table? ⇒ Boolean
20 21 22 |
# File 'lib/unresponsys/supplemental_table.rb', line 20 def extension_table? false end |
#rows ⇒ Object
12 13 14 |
# File 'lib/unresponsys/supplemental_table.rb', line 12 def rows @rows ||= Rows.new(self) end |
#supplemental_table? ⇒ Boolean
16 17 18 |
# File 'lib/unresponsys/supplemental_table.rb', line 16 def supplemental_table? true end |