Uses of Class
org.jminor.common.model.LogEntry

Packages that use LogEntry
org.jminor.common.db   
org.jminor.common.model   
org.jminor.common.server   
 

Uses of LogEntry in org.jminor.common.db
 

Methods in org.jminor.common.db that return types with arguments of type LogEntry
 List<LogEntry> PoolableConnection.getLogEntries()
           
 List<LogEntry> DatabaseConnectionImpl.getLogEntries()
          
 

Uses of LogEntry in org.jminor.common.model
 

Methods in org.jminor.common.model that return LogEntry
 LogEntry MethodLogger.logExit(String method, Throwable exception, List<LogEntry> subLog)
           
 LogEntry MethodLogger.logExit(String method, Throwable exception, List<LogEntry> subLog, String exitMessage)
           
 LogEntry LogEntry.setException(Throwable exception)
           
 LogEntry LogEntry.setExitMessage(String message)
           
 LogEntry LogEntry.setExitTimeNano(long exitTimeNano)
           
 

Methods in org.jminor.common.model that return types with arguments of type LogEntry
 List<LogEntry> MethodLogger.getLogEntries()
           
 List<LogEntry> LogEntry.getSubLog()
           
 

Methods in org.jminor.common.model with parameters of type LogEntry
 int LogEntry.compareTo(LogEntry o)
          
 

Method parameters in org.jminor.common.model with type arguments of type LogEntry
 LogEntry MethodLogger.logExit(String method, Throwable exception, List<LogEntry> subLog)
           
 LogEntry MethodLogger.logExit(String method, Throwable exception, List<LogEntry> subLog, String exitMessage)
           
 void LogEntry.setSubLog(List<LogEntry> subLog)
           
 

Constructors in org.jminor.common.model with parameters of type LogEntry
LogEntry(LogEntry entry)
          A copy constructor
 

Uses of LogEntry in org.jminor.common.server
 

Methods in org.jminor.common.server that return types with arguments of type LogEntry
 List<LogEntry> ServerLog.getLog()
           
 

Constructor parameters in org.jminor.common.server with type arguments of type LogEntry
ServerLog(UUID clientID, long connectionCreationDate, List<LogEntry> log, long lastAccessDate, long lastExitDate, String lastAccessedMethod, String lastAccessedMessage, String lastExitedMethod)
          Instantiates a new ServerLog instance.