Uses of Interface
com.sodius.mdw.core.util.log.Logger

Packages that use Logger
com.sodius.mdw.core Central classes of the MDWorkbench platform. 
com.sodius.mdw.core.eval Contains the evaluation framework to launch evaluations of templates, rules and scripts. 
com.sodius.mdw.core.model.io Contains the model i/o framework, which enables to load and save models. 
com.sodius.mdw.core.util.log Defines the logging framework, which enables to report errors and warnings, as well as debugging information. 
 

Uses of Logger in com.sodius.mdw.core
 

Methods in com.sodius.mdw.core that return Logger
 Logger WorkbenchConfiguration.getLogger()
          Returns the logger, used to display errors and warnings, as well as debugging information.
 

Methods in com.sodius.mdw.core with parameters of type Logger
 void WorkbenchConfiguration.setLogger(Logger logger)
          Sets the logger to use to display errors and warnings, as well as debugging information.
 

Uses of Logger in com.sodius.mdw.core.eval
 

Methods in com.sodius.mdw.core.eval that return Logger
 Logger EvaluationContext.getLogger()
          Returns the logger used to report errors and warnings, as well as debugging information.
 

Uses of Logger in com.sodius.mdw.core.model.io
 

Methods in com.sodius.mdw.core.model.io that return Logger
 Logger ConnectorContext.getLogger()
          Returns the logger used to report errors and warnings, as well as debugging information.
 

Uses of Logger in com.sodius.mdw.core.util.log
 

Classes in com.sodius.mdw.core.util.log that implement Logger
 class AbstractLogger
          Skeletal implementation of the Logger interface.
 class FileLogger
          Outputs log information into a file.
 class LoggerSet
          Dispatch log information to a set of registered loggers.
 class LogRecorder
          Creates records of logged information.
 class SystemStreamLogger
          Logger implementation which outputs log messages to System.out and System.err streams.
 

Methods in com.sodius.mdw.core.util.log with parameters of type Logger
static void SystemStream.connect(Logger logger)
          Redirects System.out and System.err streams to the specified logger.
 

Constructors in com.sodius.mdw.core.util.log with parameters of type Logger
LoggerSet(Logger[] loggers)
          Constructs a new LoggerSet that will dispatch log information to the specified loggers.