public void format(JwIndentWriter w) throws IOException {
   w.write(
       JwUtility.format(
           "       Receptacle Scan Type: %s\n", _scanType != null ? _scanType.toString() : null));
   w.write(JwUtility.format("Receptacle Container Number: %s\n", _containerNumber));
   w.write(JwUtility.format("      Receptacle List Count: %s\n", _receptacleLists.size()));
   formatReceptacleLists(w);
 }
 private void formatReceptacleLists(JwIndentWriter w) throws IOException {
   w.indent();
   for (AcEdiUpuResdit11ReceptacleList v : _receptacleLists) v.format(w);
   w.undent();
 }
 public void format(JwIndentWriter w) throws IOException {
   w.write(JwUtility.format("Receptacle List Count: %s\n", _receptacleLists.size()));
   formatReceptacleLists(w);
 }