Exemple #1
0
 def __init__(self):
     '''
     Just call superclass constructors here.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
Exemple #2
0
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
Exemple #3
0
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
Exemple #4
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
Exemple #5
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
Exemple #6
0
 def __init__(self):
     '''
     Just call superclass constructors here and declare members.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     
     self.brightness = None
     self.cb = None
     self.monitor = None
     return
Exemple #7
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.eventCount = 0
        self.contFlag = True
        self.LOGGER = getLogger("CounterConsumer")

        return
Exemple #8
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.eventCount = 0
        self.contFlag = True
        self.LOGGER = getLogger("CounterConsumer")

        return
Exemple #9
0
    def __init__(self): # pragma: NO COVER
        '''
        Developer must invoke this from their components constructor. The
        alternative is for them to not provide a constructor at all (implying
        the Container ends up invoking this).

        Params: None.

        Returns: Nothing

        Raises: Nothing.
        '''
        ACSComponent.__init__(self)
        CharacteristicModel.__init__(self)
Exemple #10
0
    def __init__(self):
        '''Constructor.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.logger = self.getLogger()

        # Stores method information for all components
        # self.methods is indexed by component name
        # self.methods[comp_name] is a map indexed by method name
        # self.methods[comp_name][method_name] is an instance of MethodInfo
        self.methods = {}

        # Stores method information for all interfaces
        # self.methods is indexed by interface ('IDL:bla/bla/bla:1.0') name
        # self.methods[if_name] is a map indexed by method name
        # self.methods[if_name][method_name] is an instance of MethodInfo
        self.if_methods = {}
Exemple #11
0
    def __init__(self):
        """Constructor.
        """
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.logger = self.getLogger()

        # Stores method information for all components
        # self.methods is indexed by component name
        # self.methods[comp_name] is a map indexed by method name
        # self.methods[comp_name][method_name] is an instance of MethodInfo
        self.methods = {}

        # Stores method information for all interfaces
        # self.methods is indexed by interface ('IDL:bla/bla/bla:1.0') name
        # self.methods[if_name] is a map indexed by method name
        # self.methods[if_name][method_name] is an instance of MethodInfo
        self.if_methods = {}
 def __init__(self):
     ACSComponent.__init__(self)
     ComponentLifecycle.__init__(self)
     ContainerServices.__init__(self)
Exemple #13
0
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
 def __init__(self, *args, **kw):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self, *args, **kw)
     self._a_number = 0
Exemple #15
0
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
	def __init__(self):
		ACSComponent.__init__(self)
		ComponentLifecycle.__init__(self)
		ContainerServices.__init__(self)