public String toConsoleString() {
   StringBuffer strbuffer = new StringBuffer();
   for (LocalHistoryPO historyPO : this.localHistoryPOs) {
     strbuffer.append(historyPO.toConsoleString());
     strbuffer.append("\n");
   }
   return strbuffer.toString();
 }