Esempio n. 1
0
 /** @see com.ardais.bigr.library.web.column.SampleColumnImpl#getBodyText(SampleRowParams) */
 protected String getBodyText(SampleRowParams rp) throws IOException {
   StringBuffer result = new StringBuffer(128);
   if (ApiFunctions.safeStringLength(getRawBodyText(rp)) > 0) {
     result.append("<td bgColor=red>");
   } else {
     result.append("<td>");
   }
   result.append(getRawBodyText(rp));
   result.append("</td>");
   return result.toString();
 }