コード例 #1
0
 def initialize(self):
     self.__model = NotificationsModel(self.__unreadMessagesCounter)
     self.__actionsHandlers = NotificationsActionsHandlers()
     self.__alertsController = AlertController(self.__model)
     self.__visibilityController = NotificationVisibilityController(
         self.__model)
     self.__visibilityController.registerNotifications(
         (NOTIFICATION_TYPE.CLUB_INVITE, ))
コード例 #2
0
 def initialize(self):
     self.__model = NotificationsModel()
     self.__actionsHandlers = NotificationsActionsHandlers()
     self.__alertsController = AlertController(self.__model)
     self.__layoutController = LayoutController(self.__model)
コード例 #3
0
 def initialize(self):
     self.__model = NotificationsModel(self.__unreadMessagesCounter,
                                       self.__firstEntry)
     self.__actionsHandlers = NotificationsActionsHandlers()
     self.__alertsController = AlertController(self.__model)
コード例 #4
0
 def initialize(self):
     self.__model = NotificationsModel()
     self.__alertsController = AlertController(self.__model)
     self.__listController = ListController(self.__model)
     self.__layoutController = LayoutController(self.__model)