class Coopy::Meta
Public Instance Methods
alterColumns(columns)
click to toggle source
# File lib/lib/coopy/meta.rb, line 6 def alterColumns(columns) puts "Abstract Meta.alterColumns called" end
applyFlags(flags)
click to toggle source
# File lib/lib/coopy/meta.rb, line 8 def applyFlags(flags) puts "Abstract Meta.applyFlags called" end
asTable()
click to toggle source
# File lib/lib/coopy/meta.rb, line 9 def asTable() puts "Abstract Meta.asTable called" end
changeRow(rc)
click to toggle source
# File lib/lib/coopy/meta.rb, line 7 def changeRow(rc) puts "Abstract Meta.changeRow called" end
cloneMeta(table = nil)
click to toggle source
# File lib/lib/coopy/meta.rb, line 10 def cloneMeta(table = nil) puts "Abstract Meta.cloneMeta called" end
getName()
click to toggle source
# File lib/lib/coopy/meta.rb, line 16 def getName() puts "Abstract Meta.getName called" end
getRowStream()
click to toggle source
# File lib/lib/coopy/meta.rb, line 13 def getRowStream() puts "Abstract Meta.getRowStream called" end
isNested()
click to toggle source
# File lib/lib/coopy/meta.rb, line 14 def isNested() puts "Abstract Meta.isNested called" end
isSql()
click to toggle source
# File lib/lib/coopy/meta.rb, line 15 def isSql() puts "Abstract Meta.isSql called" end
useForColumnChanges()
click to toggle source
# File lib/lib/coopy/meta.rb, line 11 def useForColumnChanges() puts "Abstract Meta.useForColumnChanges called" end
useForRowChanges()
click to toggle source
# File lib/lib/coopy/meta.rb, line 12 def useForRowChanges() puts "Abstract Meta.useForRowChanges called" end