Class: Coopy::Table

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

Direct Known Subclasses

TableView

Instance Method Summary collapse

Instance Method Details

#clearObject



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

def clear() puts "Abstract Table.clear called" end

#cloneObject



18
# File 'lib/lib/coopy/table.rb', line 18

def clone() puts "Abstract Table.clone called" end

#createObject



19
# File 'lib/lib/coopy/table.rb', line 19

def create() puts "Abstract Table.create called" end

#get_heightObject



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

def get_height() puts "Abstract Table.get_height called" end

#get_widthObject



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

def get_width() puts "Abstract Table.get_width called" end

#getCell(x, y) ⇒ Object



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

def getCell(x,y) puts "Abstract Table.getCell called" end

#getCellViewObject



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

def getCellView() puts "Abstract Table.getCellView called" end

#getDataObject



17
# File 'lib/lib/coopy/table.rb', line 17

def getData() puts "Abstract Table.getData called" end

#getMetaObject



20
# File 'lib/lib/coopy/table.rb', line 20

def getMeta() puts "Abstract Table.getMeta called" end

#insertOrDeleteColumns(fate, wfate) ⇒ Object



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

def insertOrDeleteColumns(fate,wfate) puts "Abstract Table.insertOrDeleteColumns called" end

#insertOrDeleteRows(fate, hfate) ⇒ Object



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

def insertOrDeleteRows(fate,hfate) puts "Abstract Table.insertOrDeleteRows called" end

#isResizableObject



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

def isResizable() puts "Abstract Table.isResizable called" end

#resize(w, h) ⇒ Object



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

def resize(w,h) puts "Abstract Table.resize called" end

#setCell(x, y, c) ⇒ Object



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

def setCell(x,y,c) puts "Abstract Table.setCell called" end

#trimBlankObject



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

def trimBlank() puts "Abstract Table.trimBlank called" end