Class: Coopy::View

Inherits:
Object
  • Object
show all
Defined in:
lib/lib/coopy/view.rb

Instance Method Summary collapse

Instance Method Details

#equals(d1, d2) ⇒ Object



7
# File 'lib/lib/coopy/view.rb', line 7

def equals(d1,d2) puts "Abstract View.equals called" end

#getTable(t) ⇒ Object



15
# File 'lib/lib/coopy/view.rb', line 15

def getTable(t) puts "Abstract View.getTable called" end

#hashExists(h, str) ⇒ Object



12
# File 'lib/lib/coopy/view.rb', line 12

def hashExists(h,str) puts "Abstract View.hashExists called" end

#hashGet(h, str) ⇒ Object



13
# File 'lib/lib/coopy/view.rb', line 13

def hashGet(h,str) puts "Abstract View.hashGet called" end

#hashSet(h, str, d) ⇒ Object



10
# File 'lib/lib/coopy/view.rb', line 10

def hashSet(h,str,d) puts "Abstract View.hashSet called" end

#isHash(h) ⇒ Object



11
# File 'lib/lib/coopy/view.rb', line 11

def isHash(h) puts "Abstract View.isHash called" end

#isTable(t) ⇒ Object



14
# File 'lib/lib/coopy/view.rb', line 14

def isTable(t) puts "Abstract View.isTable called" end

#makeHashObject



9
# File 'lib/lib/coopy/view.rb', line 9

def makeHash() puts "Abstract View.makeHash called" end

#toDatum(str) ⇒ Object



8
# File 'lib/lib/coopy/view.rb', line 8

def toDatum(str) puts "Abstract View.toDatum called" end

#toString(d) ⇒ Object



6
# File 'lib/lib/coopy/view.rb', line 6

def toString(d) puts "Abstract View.toString called" end

#wrapTable(t) ⇒ Object



16
# File 'lib/lib/coopy/view.rb', line 16

def wrapTable(t) puts "Abstract View.wrapTable called" end