Method: CDK::CDKOBJS#bindableObject

Defined in:
lib/cdk/cdk_objs.rb

#bindableObject(cdktype) ⇒ Object



311
312
313
314
315
316
317
318
319
# File 'lib/cdk/cdk_objs.rb', line 311

def bindableObject(cdktype)
  if cdktype != self.object_type
    return nil
  elsif [:FSELECT, :ALPHALIST].include?(self.object_type)
    return @entry_field
  else
    return self
  end
end