getChoreNamesS method

String getChoreNamesS()

For report: To get Chore class names in String.

Implementation

String getChoreNamesS() {
  StringBuffer nBuf = new StringBuffer();
  for (var x = 0; x < choreL.length; x++) {
    nBuf.write(choreL[x].name);
    nBuf.write(' ');
  }
  return nBuf.toString();
}