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)


608
609
610
611
612
613
# File 'lib/twb/datasource.rb', line 608

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.



607
608
609
# File 'lib/twb/datasource.rb', line 607

def from
  @from
end

#toObject (readonly)

Returns the value of attribute to.



607
608
609
# File 'lib/twb/datasource.rb', line 607

def to
  @to
end

Instance Method Details

#to_sObject



614
615
616
# File 'lib/twb/datasource.rb', line 614

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