Package brisa :: Package upnp :: Package device :: Module action :: Class Argument
[hide private]
[frames] | no frames]

Class Argument

source code

              object --+    
                       |    
base_action.BaseArgument --+
                           |
                          Argument

Instance Methods [hide private]
 
__init__(self, arg_name, arg_direction, arg_state_var)
Constructor for the Argument class.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  IN = "in"
  OUT = "out"
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, arg_name, arg_direction, arg_state_var)
(Constructor)

source code 

Constructor for the Argument class.

Parameters:
  • arg_name (string) - argument name
  • arg_direction (string) - argument direction
  • arg_state_var (string) - argument related state variable
Overrides: object.__init__