class Eclair::Item
Attributes
selected[RW]
visible[RW]
Public Class Methods
new()
click to toggle source
# File lib/eclair/item.rb, line 9 def initialize @selected = false @visible = true end
Public Instance Methods
command()
click to toggle source
# File lib/eclair/item.rb, line 26 def command raise "Not Implemented" end
header()
click to toggle source
# File lib/eclair/item.rb, line 30 def header raise "Not Implemented" end
id()
click to toggle source
# File lib/eclair/item.rb, line 22 def id raise "Not Implemented" end
search_key()
click to toggle source
# File lib/eclair/item.rb, line 38 def search_key raise "Not Implemented" end
select(state)
click to toggle source
# File lib/eclair/item.rb, line 18 def select state @selected = state end
title()
click to toggle source
# File lib/eclair/item.rb, line 34 def title raise "Not Implemented" end
toggle_select()
click to toggle source
# File lib/eclair/item.rb, line 14 def toggle_select @selected = !@selected end