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.



3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
# File 'lib/ruby-macrodroid.rb', line 3034

def initialize(h={})

  options = {
    constraint_list: ''
  }

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

end