693 @exception NotImplementedError to indicate that this method must be |
693 @exception NotImplementedError to indicate that this method must be |
694 implemented by a subclass |
694 implemented by a subclass |
695 """ |
695 """ |
696 raise NotImplementedError("Not implemented") |
696 raise NotImplementedError("Not implemented") |
697 |
697 |
698 return None # __IGNORE_WARNING_M831__ |
698 return None # __IGNORE_WARNING_M-831__ |
699 |
699 |
700 def vcsGetProjectHelper(self, project): |
700 def vcsGetProjectHelper(self, project): |
701 """ |
701 """ |
702 Public method to instanciate a helper object for the project. |
702 Public method to instanciate a helper object for the project. |
703 |
703 |
708 @exception NotImplementedError to indicate that this method must be |
708 @exception NotImplementedError to indicate that this method must be |
709 implemented by a subclass |
709 implemented by a subclass |
710 """ |
710 """ |
711 raise NotImplementedError("Not implemented") |
711 raise NotImplementedError("Not implemented") |
712 |
712 |
713 return None # __IGNORE_WARNING_M831__ |
713 return None # __IGNORE_WARNING_M-831__ |
714 |
714 |
715 ##################################################################### |
715 ##################################################################### |
716 ## methods above need to be implemented by a subclass |
716 ## methods above need to be implemented by a subclass |
717 ##################################################################### |
717 ##################################################################### |
718 |
718 |
1125 @type str |
1125 @type str |
1126 """ |
1126 """ |
1127 if self.statusMonitorThread is not None: |
1127 if self.statusMonitorThread is not None: |
1128 self.statusMonitorThread.clearCachedState(name) |
1128 self.statusMonitorThread.clearCachedState(name) |
1129 |
1129 |
1130 def _createStatusMonitorThread(self, interval, project): # noqa: U100 |
1130 def _createStatusMonitorThread(self, interval, project): # noqa: U-100 |
1131 """ |
1131 """ |
1132 Protected method to create an instance of the VCS status monitor |
1132 Protected method to create an instance of the VCS status monitor |
1133 thread. |
1133 thread. |
1134 |
1134 |
1135 Note: This method should be overwritten in subclasses in order to |
1135 Note: This method should be overwritten in subclasses in order to |