Package jadex.commons
Interface ICacheableModel
- 
- All Known Implementing Classes:
- AbstractModelLoader.BrokenModel,- BDIModel,- jadex.kernelbase.CacheableKernelModel,- MicroModel
 
 public interface ICacheableModelRequired interface for models to be managed by abstract model loader.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFilename()Get the filename.longgetLastChecked()Get the last check time of the model.longgetLastModified()Get the last modification time of the model.voidsetLastChecked(long time)Set the last check time of the model.
 
- 
- 
- 
Method Detail- 
getLastCheckedlong getLastChecked() Get the last check time of the model.- Returns:
- The last check time of the model.
 
 - 
setLastCheckedvoid setLastChecked(long time) Set the last check time of the model.- Parameters:
- time- The last check time of the model.
 
 - 
getLastModifiedlong getLastModified() Get the last modification time of the model.- Returns:
- The last modification time of the model.
 
 - 
getFilenamejava.lang.String getFilename() Get the filename.- Returns:
- The filename.
 
 
- 
 
-