Uses of Interface
provided.logger.ILogEntryFormatter
Packages that use ILogEntryFormatter
Package
Description
The model parts of the demo app
The view parts of the demo app
Convenience and utility support for the logger library
-
Uses of ILogEntryFormatter in provided.logger
Fields in provided.logger declared as ILogEntryFormatterModifier and TypeFieldDescriptionstatic ILogEntryFormatter
ILogEntryFormatter.DEFAULT
A default log entry formatter that uses the default string format.Methods in provided.logger that return ILogEntryFormatterModifier and TypeMethodDescriptionstatic ILogEntryFormatter
ILogEntryFormatter.MakeFormatter(String formatStr)
A default log entry formatter that uses the given string format.Methods in provided.logger with parameters of type ILogEntryFormatterModifier and TypeMethodDescriptionstatic ILogEntryProcessor
ILogEntryProcessor.MakeDefault(ILogEntryFormatter leFormatter)
Instantiate a log entry processor that prints to the console using the given log entry formatter. -
Uses of ILogEntryFormatter in provided.logger.demo.model
Fields in provided.logger.demo.model declared as ILogEntryFormatterModifier and TypeFieldDescriptionprivate ILogEntryFormatter
MainModel.leFormatter
The log entry formatter used by the local model logger Note the use of the indexed positional arguments ("%X$") in the format string to use only the desired elements of the log entry to be formatted. -
Uses of ILogEntryFormatter in provided.logger.demo.view
Fields in provided.logger.demo.view declared as ILogEntryFormatterModifier and TypeFieldDescriptionprivate ILogEntryFormatter
MainFrame.leFormatter
The log entry formatter used by the local view logger. -
Uses of ILogEntryFormatter in provided.logger.util
Fields in provided.logger.util declared as ILogEntryFormatterModifier and TypeFieldDescriptionprivate ILogEntryFormatter
AStringLogEntryProcessor.leFormatter
The log entry formatter currently in use.private ILogEntryFormatter
LoggerPanel.leFormatter
The log entry formatter in use.Methods in provided.logger.util that return ILogEntryFormatterModifier and TypeMethodDescriptionAStringLogEntryProcessor.getLogEntryFormatter()
Get the current log entry formatter in useIStringLogEntryProcessor.getLogEntryFormatter()
Get the current log entry formatter in useLoggerPanel.getLogEntryFormatter()
Methods in provided.logger.util with parameters of type ILogEntryFormatterModifier and TypeMethodDescriptionstatic IStringLogEntryProcessor
AStringLogEntryProcessor.MakeDefault(ILogEntryFormatter leFormatter)
Static factory to instantiate an AStringLogEntryProcessor instance using the given ILogEntryFormatter.void
AStringLogEntryProcessor.setLogEntryFormatter(ILogEntryFormatter leFormatter)
Set the log entry formatter in use to be the given formattervoid
IStringLogEntryProcessor.setLogEntryFormatter(ILogEntryFormatter leFormatter)
Set the log entry formatter in use to be the given formattervoid
LoggerPanel.setLogEntryFormatter(ILogEntryFormatter leFormatter)
Constructors in provided.logger.util with parameters of type ILogEntryFormatterModifierConstructorDescriptionAStringLogEntryProcessor(ILogEntryFormatter leFormatter)
Construct an instance that uses the given log entry formatter.