Package adams.core
Interface VariableUpdaterWithNotificationSuppression
-
- All Superinterfaces:
NotificationSuppression,VariableUpdater
- All Known Implementing Classes:
IncVariable,SetVariable,SetVariable
public interface VariableUpdaterWithNotificationSuppression extends VariableUpdater, NotificationSuppression
Interface for classes that update variables.- 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 variable change listeners.voidsetSuppressNotifications(boolean value)Sets whether to notify variable change listeners.-
Methods inherited from interface adams.core.VariableUpdater
isUpdatingVariables
-
-
-
-
Method Detail
-
setSuppressNotifications
void setSuppressNotifications(boolean value)
Sets whether to notify variable change listeners.- Specified by:
setSuppressNotificationsin interfaceNotificationSuppression- Parameters:
value- false if to notify listeners
-
getSuppressNotifications
boolean getSuppressNotifications()
Returns whether to notify variable change listeners.- Specified by:
getSuppressNotificationsin interfaceNotificationSuppression- Returns:
- false if to notify listeners
-
-