Uses of Interface
net.sourceforge.acelogger.formatter.Formatter

Packages that use Formatter
net.sourceforge.acelogger.appender This package contains basic Appender implementations. 
net.sourceforge.acelogger.constants This package contains classes that define constants used by Appender, Logger, Formatter, etc. 
net.sourceforge.acelogger.factory This package contains factory classes to produce configured instances of Appender, Logger, Formatter, etc. 
net.sourceforge.acelogger.formatter This package contains classes responsible for the formatting of log messages. 
 

Uses of Formatter in net.sourceforge.acelogger.appender
 

Methods in net.sourceforge.acelogger.appender that return Formatter
 Formatter BaseAppender.getFormatter()
          Returns the formatter used within this appender.
 

Constructors in net.sourceforge.acelogger.appender with parameters of type Formatter
BaseAppender(String identifier, Formatter formatter, ExecutorManager executor)
          Constructs a new BaseAppender using the supplied identifier, formatter, and executor manager.
BaseAppender(String identifier, Formatter formatter, ExecutorManager executor, LevelFilter threshold)
          Constructs a new BaseAppender using the supplied identifier, formatter, and executor manager.
PrintStreamAppender(String identifier, PrintStream destination, Formatter formatter, ExecutorManager executor)
          Constructs a new PrintStreamAppender with the supplied information.
SystemErrAppender(String identifier, Formatter formatter, ExecutorManager executor)
          Constructs a new SystemErrAppender with the supplied information.
SystemOutAppender(String identifier, Formatter formatter, ExecutorManager executor)
          Constructs a new SystemOutAppender with the supplied information.
TextFileAppender(String identifier, String fileName, Formatter formatter, ExecutorManager executor)
           
 

Uses of Formatter in net.sourceforge.acelogger.constants
 

Fields in net.sourceforge.acelogger.constants declared as Formatter
static Formatter FormatterConstants.EMPTY
          A formatter that do nothing.
 

Uses of Formatter in net.sourceforge.acelogger.factory
 

Methods in net.sourceforge.acelogger.factory that return Formatter
static Formatter FormatterFactory.getDefaultFormatter()
          Returns the default formatter of this factory, the one used when no formatter is found for a given identifier.
static Formatter FormatterFactory.getFormatter(String identifier)
          Obtains a properly configured formatter for the given identifier.
static Formatter FormatterFactory.registerFormatter(Formatter formatter)
          Registers an appender within this factory.
static Formatter FormatterFactory.setDefaultFormatter(Formatter defaultFormatter)
          Sets the default formatter of this factory, the one used when no formatter is found for a given identifier.
 

Methods in net.sourceforge.acelogger.factory that return types with arguments of type Formatter
static List<Formatter> FormatterFactory.getRegisteredFormatters()
          Returns a list of all formatters registered in this factory.
 

Methods in net.sourceforge.acelogger.factory with parameters of type Formatter
static Formatter FormatterFactory.registerFormatter(Formatter formatter)
          Registers an appender within this factory.
static Formatter FormatterFactory.setDefaultFormatter(Formatter defaultFormatter)
          Sets the default formatter of this factory, the one used when no formatter is found for a given identifier.
 

Uses of Formatter in net.sourceforge.acelogger.formatter
 

Classes in net.sourceforge.acelogger.formatter that implement Formatter
 class BaseFormatter
          Abstracts all common tasks for Formatter.
 class EmptyFormatter
          A implementation of Formatter that do nothing.
 class MessageOnlyFormatter
          An implementation of Formatter that formats only the log message, no other LogEvent information is used to format the message.
 class PatternFormatter
          TODO: Create Doc.
 class SimpleFormatter
          An implementation of Formatter that formats the log message and outputs the date, location and message.
 

Fields in net.sourceforge.acelogger.formatter declared as Formatter
static Formatter Formatter.NO_FORMATTER
          A formatter suitable to indicate that no formatter was found.
 



Copyright © 2007-2010 The AceLogger Team. All Rights Reserved.