Interface MessageFormatter
-
- All Known Implementing Classes:
FlowAwareHtmlMessageFormatter
,HtmlMessageFormatter
public interface MessageFormatter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBlockLine(BlockLogMessage block, int baseLevel, boolean isClosed)
String
getCloseBlockLine(List<BlockLogMessage> blocks)
String
getCloseUpdaterDiv()
String
getMarkBlockEmptyLine(List<BlockLogMessage> blocks)
String
getMessageLine(LogMessage message, int baseLevel)
String
getOpenUpdaterDiv()
String
getRemoveNodesHiddenOnClient(List<BlockLogMessage> blocks)
String
getUpdateBlockClassLine(List<BlockLogMessage> blocks)
String
getUpdateBlockDurationLine(List<BlockLogMessage> blocks)
String
getUpdateBlockStatusLine(List<BlockLogMessage> blocks)
-
-
-
Method Detail
-
getMessageLine
@NotNull String getMessageLine(@NotNull LogMessage message, int baseLevel)
-
getBlockLine
@NotNull String getBlockLine(@NotNull BlockLogMessage block, int baseLevel, boolean isClosed)
-
getMarkBlockEmptyLine
@NotNull String getMarkBlockEmptyLine(@NotNull List<BlockLogMessage> blocks)
-
getUpdateBlockStatusLine
@NotNull String getUpdateBlockStatusLine(@NotNull List<BlockLogMessage> blocks)
-
getUpdateBlockDurationLine
@NotNull String getUpdateBlockDurationLine(@NotNull List<BlockLogMessage> blocks)
-
getUpdateBlockClassLine
@NotNull String getUpdateBlockClassLine(@NotNull List<BlockLogMessage> blocks)
-
getRemoveNodesHiddenOnClient
@NotNull String getRemoveNodesHiddenOnClient(@NotNull List<BlockLogMessage> blocks)
-
getCloseBlockLine
@NotNull String getCloseBlockLine(@NotNull List<BlockLogMessage> blocks)
-
getOpenUpdaterDiv
@NotNull String getOpenUpdaterDiv()
-
getCloseUpdaterDiv
@NotNull String getCloseUpdaterDiv()
-
-