Package adams.flow.control
Interface StorageUpdaterWithNotificationSuppression
-
- All Superinterfaces:
NotificationSuppression,StorageUpdater
- All Known Implementing Classes:
IncStorageValue,SetStorageValue
public interface StorageUpdaterWithNotificationSuppression extends StorageUpdater, NotificationSuppression
Interface for classes that update storage items.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetSuppressNotifications()Returns whether to notify storage change listeners.voidsetSuppressNotifications(boolean value)Sets whether to notify storage change listeners.-
Methods inherited from interface adams.flow.control.StorageUpdater
isUpdatingStorage
-
-
-
-
Method Detail
-
setSuppressNotifications
void setSuppressNotifications(boolean value)
Sets whether to notify storage change listeners.- Specified by:
setSuppressNotificationsin interfaceNotificationSuppression- Parameters:
value- false if to notify listeners
-
getSuppressNotifications
boolean getSuppressNotifications()
Returns whether to notify storage change listeners.- Specified by:
getSuppressNotificationsin interfaceNotificationSuppression- Returns:
- false if to notify listeners
-
-