Package de.galan.commons.util
Class MessageBox
- java.lang.Object
-
- de.galan.commons.util.MessageBox
-
public class MessageBox extends Object
Print generic message-boxes to the logging system
-
-
Constructor Summary
Constructors Constructor Description MessageBox()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description protected static StringgenerateBox(String title, List<String> messageLines)static voidprintBox(String title, String message)Prints a box with the given title and message to the logger, the title can be omitted.static voidprintBox(String title, List<String> messageLines)Prints a box with the given title and message lines to the logger, the title can be omitted.
-
-
-
Method Detail
-
printBox
public static void printBox(String title, String message)
Prints a box with the given title and message to the logger, the title can be omitted.
-
printBox
public static void printBox(String title, List<String> messageLines)
Prints a box with the given title and message lines to the logger, the title can be omitted.
-
-