Exemplo n.º 1
0
 /**
  * Returns detailed debugging information about the contained {@link TextBlock}s.
  *
  * @return Debug information.
  */
 public String debugString() {
   StringBuilder sb = new StringBuilder();
   for (TextBlock tb : getTextBlocks()) {
     sb.append(tb.toString());
     sb.append('\n');
   }
   return sb.toString();
 }