Interface ReloadableContainerManager
-
public interface ReloadableContainerManager
For container managers that can may be able to reload their contents from the database.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isReloadable()
Returns whether the data containers can be reloaded from the database or not.void
setReloadable(boolean value)
Sets whether the data containers are reloadable (from the database) or not.
-
-
-
Method Detail
-
setReloadable
void setReloadable(boolean value)
Sets whether the data containers are reloadable (from the database) or not.- Parameters:
value
- true if the data containers can be reloaded
-
isReloadable
boolean isReloadable()
Returns whether the data containers can be reloaded from the database or not.- Returns:
- true if the data containers can be reloaded
-
-