String value = this.value.toString();
Writer writer = this.getJspContext().getOut();
String formated = "";
try {
formated = format.format(value);
formated = Strings.escapeHTML(formated);
} catch (ArrayIndexOutOfBoundsException e) {
RockFrameworkLogger.getLogger().warn("Error formating '" + value + "' with mask '" + this.format + "'");
formated = FormatTag.ERROR_VALUE;
}