Package jadex.commons
Class AbstractModelLoader.BrokenModel
- java.lang.Object
- 
- jadex.commons.AbstractModelLoader.BrokenModel
 
- 
- All Implemented Interfaces:
- ICacheableModel
 - Enclosing class:
- AbstractModelLoader
 
 public class AbstractModelLoader.BrokenModel extends java.lang.Object implements ICacheableModel Store an exception during loading in cache.
- 
- 
Constructor SummaryConstructors Constructor Description BrokenModel(java.lang.Exception e, ResourceInfo info)Create a broken model.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ExceptiongetException()Get the exception.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.
 
- 
- 
- 
Constructor Detail- 
BrokenModelpublic BrokenModel(java.lang.Exception e, ResourceInfo info)Create a broken model.
 
- 
 - 
Method Detail- 
getLastCheckedpublic long getLastChecked() Get the last check time of the model.- Specified by:
- getLastCheckedin interface- ICacheableModel
- Returns:
- The last check time of the model.
 
 - 
setLastCheckedpublic void setLastChecked(long time) Set the last check time of the model.- Specified by:
- setLastCheckedin interface- ICacheableModel
- Parameters:
- time- The last check time of the model.
 
 - 
getLastModifiedpublic long getLastModified() Get the last modification time of the model.- Specified by:
- getLastModifiedin interface- ICacheableModel
- Returns:
- The last modification time of the model.
 
 - 
getFilenamepublic java.lang.String getFilename() Get the filename.- Specified by:
- getFilenamein interface- ICacheableModel
- Returns:
- The filename.
 
 - 
getExceptionpublic java.lang.Exception getException() Get the exception.- Returns:
- The exception.
 
 
- 
 
-