163164165166167168169170171172173
} }); sb.appendHtmlConstant( "<div title='" + Joiner.on("<br/>").join(warningMsgs) + "' style='background-color: yellow;'>" + property.asHtml() + "</div>"); } else { sb.appendHtmlConstant(property.asHtml()); } } return sb.toSafeHtml();
165166167168169170171172173174175
sb.appendHtmlConstant( "<div title='" + Joiner.on("<br/>").join(warningMsgs) + "' style='background-color: yellow;'>" + property.asHtml() + "</div>"); } else { sb.appendHtmlConstant(property.asHtml()); } } return sb.toSafeHtml(); } };
5758596061626364656667
} public String propertyAsHtml(String propertyName) { PropertyInfo property = propertisMap.get(propertyName); return property == null ? "<br/>" : property.asHtml(); } @Override public int hashCode() { final int prime = 31;