Class: IndexCollector

Inherits:
HashCollector show all
Defined in:
lib/qtext/extensions.rb

Overview

Collect row and column values in various ways

Instance Method Summary collapse

Methods inherited from HashCollector

#collect, #to_hash

Constructor Details

#initialize(row, column) ⇒ IndexCollector

Returns a new instance of IndexCollector.



43
44
45
46
47
48
# File 'lib/qtext/extensions.rb', line 43

def initialize( row, column )
  super()
  # MUST use writers here, not instance variables
  self.row = row
  self.column = column
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class HashCollector