Class: Unresponsys::SupplementalTable

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/unresponsys/supplemental_table.rb

Defined Under Namespace

Classes: Rows

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#folderObject (readonly)

Returns the value of attribute folder.



5
6
7
# File 'lib/unresponsys/supplemental_table.rb', line 5

def folder
  @folder
end

#nameObject (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

Returns:

  • (Boolean)


20
21
22
# File 'lib/unresponsys/supplemental_table.rb', line 20

def extension_table?
  false
end

#rowsObject



12
13
14
# File 'lib/unresponsys/supplemental_table.rb', line 12

def rows
  @rows ||= Rows.new(self)
end

#supplemental_table?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/unresponsys/supplemental_table.rb', line 16

def supplemental_table?
  true
end