Class: ElseIfConditionAction

Inherits:
IfConditionAction show all
Defined in:
lib/ruby-macrodroid.rb

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from IfConditionAction

#to_s

Methods inherited from Action

#invoke, #to_s

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ ElseIfConditionAction

Returns a new instance of ElseIfConditionAction.



3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
# File 'lib/ruby-macrodroid.rb', line 3041

def initialize(h={})

  options = {
    constraint_list: ''
  }

  super(options.merge h)
  @label = 'ElseIf '

end