class Coopy::View

Public Instance Methods

equals(d1,d2) click to toggle source
# File lib/lib/coopy/view.rb, line 7
def equals(d1,d2) puts "Abstract View.equals called" end
getTable(t) click to toggle source
# File lib/lib/coopy/view.rb, line 15
def getTable(t) puts "Abstract View.getTable called" end
hashExists(h,str) click to toggle source
# File lib/lib/coopy/view.rb, line 12
def hashExists(h,str) puts "Abstract View.hashExists called" end
hashGet(h,str) click to toggle source
# File lib/lib/coopy/view.rb, line 13
def hashGet(h,str) puts "Abstract View.hashGet called" end
hashSet(h,str,d) click to toggle source
# File lib/lib/coopy/view.rb, line 10
def hashSet(h,str,d) puts "Abstract View.hashSet called" end
isHash(h) click to toggle source
# File lib/lib/coopy/view.rb, line 11
def isHash(h) puts "Abstract View.isHash called" end
isTable(t) click to toggle source
# File lib/lib/coopy/view.rb, line 14
def isTable(t) puts "Abstract View.isTable called" end
makeHash() click to toggle source
# File lib/lib/coopy/view.rb, line 9
def makeHash() puts "Abstract View.makeHash called" end
toDatum(str) click to toggle source
# File lib/lib/coopy/view.rb, line 8
def toDatum(str) puts "Abstract View.toDatum called" end
toString(d) click to toggle source
# File lib/lib/coopy/view.rb, line 6
def toString(d) puts "Abstract View.toString called" end
wrapTable(t) click to toggle source
# File lib/lib/coopy/view.rb, line 16
def wrapTable(t) puts "Abstract View.wrapTable called" end