Uses of Class
tuwien.auto.calimero.log.LogWriter

Packages that use LogWriter
tuwien.auto.calimero.log Provides a small logging framework used by Calimero for offering information to users of the library. 
 

Uses of LogWriter in tuwien.auto.calimero.log
 

Subclasses of LogWriter in tuwien.auto.calimero.log
 class LogFileWriter
          A LogWriter using a file resource as output destination for log information.
 class LogNetWriter
          A LogNetWriter is used to log information over a socket network connection.
 class LogStreamWriter
          LogWriter using a Writer for output.
 

Methods in tuwien.auto.calimero.log that return LogWriter
 LogWriter[] LogManager.getAllGlobalWriter()
          Returns all registered global log writer.
 

Methods in tuwien.auto.calimero.log with parameters of type LogWriter
 void LogService.addWriter(LogWriter writer)
          Adds the writer to this log service.
 boolean LogManager.addWriter(java.lang.String logService, LogWriter writer)
          Adds a log writer, either global or to a particular log service.
 void ErrorHandler.error(LogWriter source, java.lang.String msg, java.lang.Exception e)
          Invoked on a log writer error event.
 void LogService.removeWriter(LogWriter writer)
          Removes writer from this log service.
 void LogManager.removeWriter(java.lang.String logService, LogWriter writer)
          Removes a log writer, either global or from a particular logService.