class Coopy::CellBuilder

Public Instance Methods

conflict(parent,local,remote) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 11
def conflict(parent,local,remote) puts "Abstract CellBuilder.conflict called" end
marker(label) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 12
def marker(label) puts "Abstract CellBuilder.marker called" end
needSeparator() click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 6
def needSeparator() puts "Abstract CellBuilder.needSeparator called" end
setConflictSeparator(separator) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 8
def setConflictSeparator(separator) puts "Abstract CellBuilder.setConflictSeparator called" end
setSeparator(separator) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 7
def setSeparator(separator) puts "Abstract CellBuilder.setSeparator called" end
setView(view) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 9
def setView(view) puts "Abstract CellBuilder.setView called" end
update(local,remote) click to toggle source
# File lib/lib/coopy/cell_builder.rb, line 10
def update(local,remote) puts "Abstract CellBuilder.update called" end