Package jadex.model
Interface ICacheableModel
- All Known Implementing Classes:
AbstractModelLoader.BrokenModel
,CacheableKernelModel
public interface ICacheableModel
Required interface for models to be managed by abstract model loader.
-
Method Summary
Modifier and TypeMethodDescriptionGet the filename.long
Get the last check time of the model.long
Get the last modification time of the model.void
setLastChecked
(long time) Set the last check time of the model.
-
Method Details
-
getLastChecked
long getLastChecked()Get the last check time of the model.- Returns:
- The last check time of the model.
-
setLastChecked
void setLastChecked(long time) Set the last check time of the model.- Parameters:
time
- The last check time of the model.
-
getLastModified
long getLastModified()Get the last modification time of the model.- Returns:
- The last modification time of the model.
-
getFilename
String getFilename()Get the filename.- Returns:
- The filename.
-