def addToWatcher(self, obj): """Adds the given instance of an object to the ObjectWatcher's list of objects""" watcher = OW() watcher.add(obj)
def getFromWatcher(self, id_): """Checks if the ObjectWatcher has an instance for this object with the given id and returns if it it does""" watcher = OW() return watcher.exists(self.targetClass(), id_)