Example #1
0
 def __init__(self, name, value, local=False):
     TemplateConditionNode.__init__(self)
     self._name = name
     self._value = value
     self._local = local
Example #2
0
 def __init__(self, name=None, value=None, var_type=TemplateConditionVariable.GLOBAL, loop=False, condition_type=TemplateConditionNode.BLOCK, next_value=None, next_value_step=0):
     TemplateConditionNode.__init__(self, name, value, var_type, loop, condition_type)
     self._next_step_count = 0
     self._next_value = next_value
     self._next_value_step = next_value_step
Example #3
0
 def __init__(self):
     TemplateConditionNode.__init__(self)
Example #4
0
 def __init__(self):
     TemplateConditionNode.__init__(self)
Example #5
0
 def __init__(self, name, value, local=False):
     TemplateConditionNode.__init__(self)
     self._name = name
     self._value = value
     self._local = local