class Coopy::Table
Public Instance Methods
clear()
click to toggle source
# File lib/lib/coopy/table.rb, line 11 def clear() puts "Abstract Table.clear called" end
clone()
click to toggle source
# File lib/lib/coopy/table.rb, line 18 def clone() puts "Abstract Table.clone called" end
create()
click to toggle source
# File lib/lib/coopy/table.rb, line 19 def create() puts "Abstract Table.create called" end
getCell(x,y)
click to toggle source
# File lib/lib/coopy/table.rb, line 6 def getCell(x,y) puts "Abstract Table.getCell called" end
getCellView()
click to toggle source
# File lib/lib/coopy/table.rb, line 8 def getCellView() puts "Abstract Table.getCellView called" end
getData()
click to toggle source
# File lib/lib/coopy/table.rb, line 17 def getData() puts "Abstract Table.getData called" end
getMeta()
click to toggle source
# File lib/lib/coopy/table.rb, line 20 def getMeta() puts "Abstract Table.getMeta called" end
get_height()
click to toggle source
# File lib/lib/coopy/table.rb, line 16 def get_height() puts "Abstract Table.get_height called" end
get_width()
click to toggle source
# File lib/lib/coopy/table.rb, line 15 def get_width() puts "Abstract Table.get_width called" end
insertOrDeleteColumns(fate,wfate)
click to toggle source
# File lib/lib/coopy/table.rb, line 13 def insertOrDeleteColumns(fate,wfate) puts "Abstract Table.insertOrDeleteColumns called" end
insertOrDeleteRows(fate,hfate)
click to toggle source
# File lib/lib/coopy/table.rb, line 12 def insertOrDeleteRows(fate,hfate) puts "Abstract Table.insertOrDeleteRows called" end
isResizable()
click to toggle source
# File lib/lib/coopy/table.rb, line 9 def isResizable() puts "Abstract Table.isResizable called" end
resize(w,h)
click to toggle source
# File lib/lib/coopy/table.rb, line 10 def resize(w,h) puts "Abstract Table.resize called" end
setCell(x,y,c)
click to toggle source
# File lib/lib/coopy/table.rb, line 7 def setCell(x,y,c) puts "Abstract Table.setCell called" end
trimBlank()
click to toggle source
# File lib/lib/coopy/table.rb, line 14 def trimBlank() puts "Abstract Table.trimBlank called" end