Ejemplo n.º 1
0
 def serviceSoftware(self):
     """
     @returns    The 'Software Management' service, which provides software
                 installation, removal and similar functionality.
     """
     if not self.__softwareService:
         from homelib.software import Software
         self.__softwareService = Software.loadChosenImpl(self)
     return self.__softwareService
Ejemplo n.º 2
0
 def __init__(self, main=None):
     Software.__init__(self, main)