protected void cptPut(ClassFormatOutput out) throws IOException {

    for (Enumeration e = cptEntries.elements(); e.hasMoreElements(); ) {
      ConstantPoolEntry item = (ConstantPoolEntry) e.nextElement();
      if (item == null) {
        continue;
      }

      item.put(out);
    }
  }