Exemple #1
0
 public static String colorize(String code, String color) {
   return "<font color='" + color + "'>" + ElementUtil.getSafe(code) + "</font>";
 }
Exemple #2
0
 public static String getHtmlString(String source) {
   return "<html><body>" + ElementUtil.getSafe(source) + "</body></html>";
 }
Exemple #3
0
 public static String getHtmlString(String source, String color) {
   return getHtmlString("<font color='" + color + "'>" + ElementUtil.getSafe(source) + "</font>");
 }