Class: Twb::JoinTablePair

Inherits:
Object
  • Object
show all
Defined in:
lib/twb/datasource.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(from, to) ⇒ JoinTablePair

Returns a new instance of JoinTablePair.

Raises:

  • (ParamaterException)


582
583
584
585
586
587
# File 'lib/twb/datasource.rb', line 582

def initialize(from, to)
  raise ParamaterException.new("'From' cannot be nil.") if from.nil?
  raise ParamaterException.new("'To' cannot be nil.")   if to.nil?
  @from = from
  @to   = to
end

Instance Attribute Details

#fromObject (readonly)

Returns the value of attribute from.



581
582
583
# File 'lib/twb/datasource.rb', line 581

def from
  @from
end

#toObject (readonly)

Returns the value of attribute to.



581
582
583
# File 'lib/twb/datasource.rb', line 581

def to
  @to
end

Instance Method Details

#to_sObject



588
589
590
# File 'lib/twb/datasource.rb', line 588

def to_s
  "#{@from} -> #{@to}"
end