Class: Nobbie::Wx::Command::Factory

Inherits:
Object
  • Object
show all
Defined in:
lib/nobbie/wx/command_factory.rb

Instance Method Summary collapse

Instance Method Details

#create_choose_command(path) ⇒ Object



35
36
37
# File 'lib/nobbie/wx/command_factory.rb', line 35

def create_choose_command(path)
  ChooseCommand.new(path)
end

#create_click_on_command(path) ⇒ Object



19
20
21
# File 'lib/nobbie/wx/command_factory.rb', line 19

def create_click_on_command(path)
  ClickOnCommand.new(path)
end

#create_get_component_command(path) ⇒ Object



15
16
17
# File 'lib/nobbie/wx/command_factory.rb', line 15

def create_get_component_command(path)
  GetComponentCommand.new(path)
end

#create_get_options_command(path) ⇒ Object



43
44
45
# File 'lib/nobbie/wx/command_factory.rb', line 43

def create_get_options_command(path)
  GetOptionsCommand.new(path)
end

#create_get_selected_values_command(path) ⇒ Object



23
24
25
# File 'lib/nobbie/wx/command_factory.rb', line 23

def create_get_selected_values_command(path)
  GetSelectedValuesCommand.new(path)
end

#create_is_chosen_command(path) ⇒ Object



31
32
33
# File 'lib/nobbie/wx/command_factory.rb', line 31

def create_is_chosen_command(path)
  IsChosenCommand.new(path)
end

#create_is_enabled_command(path) ⇒ Object



39
40
41
# File 'lib/nobbie/wx/command_factory.rb', line 39

def create_is_enabled_command(path)
  IsEnabledCommand.new(path)
end

#create_select_command(path, value) ⇒ Object



27
28
29
# File 'lib/nobbie/wx/command_factory.rb', line 27

def create_select_command(path, value)
  SelectCommand.new(path, value)
end

#create_type_into_command(path, value) ⇒ Object



11
12
13
# File 'lib/nobbie/wx/command_factory.rb', line 11

def create_type_into_command(path, value)
  TypeIntoCommand.new(path, value)
end