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 ILogEntryFormatterILogEntryFormatter.DEFAULTA default log entry formatter that uses the default string format.Methods in provided.logger that return ILogEntryFormatterModifier and TypeMethodDescriptionstatic ILogEntryFormatterILogEntryFormatter.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 ILogEntryProcessorILogEntryProcessor.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 ILogEntryFormatterMainModel.leFormatterThe 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 ILogEntryFormatterMainFrame.leFormatterThe 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 ILogEntryFormatterAStringLogEntryProcessor.leFormatterThe log entry formatter currently in use.private ILogEntryFormatterLoggerPanel.leFormatterThe 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 IStringLogEntryProcessorAStringLogEntryProcessor.MakeDefault(ILogEntryFormatter leFormatter)Static factory to instantiate an AStringLogEntryProcessor instance using the given ILogEntryFormatter.voidAStringLogEntryProcessor.setLogEntryFormatter(ILogEntryFormatter leFormatter)Set the log entry formatter in use to be the given formattervoidIStringLogEntryProcessor.setLogEntryFormatter(ILogEntryFormatter leFormatter)Set the log entry formatter in use to be the given formattervoidLoggerPanel.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.