Class: Cheri::Builder::Context::ConnectionMinder::Conn

Inherits:
Object
  • Object
show all
Defined in:
lib/cheri/builder/context.rb

Overview

:nodoc: all

Instance Method Summary collapse

Constructor Details

#initialize(ctr, par, obj, sym, props) ⇒ Conn

Returns a new instance of Conn.



721
722
723
724
725
726
727
# File 'lib/cheri/builder/context.rb', line 721

def initialize(ctr,par,obj,sym,props)
  @c = ctr
  @p = par
  @o = obj
  @y = sym if sym
  @r = props if props
end

Instance Method Details

#connectObject



731
732
733
# File 'lib/cheri/builder/context.rb', line 731

def connect
  @c.connect(@p,@o,@y,@r)
end

#objObject



728
729
730
# File 'lib/cheri/builder/context.rb', line 728

def obj
  @o
end