Ejemplo n.º 1
0
  /** Adds the ExportMap's exportKey and exportData as a key,value pair to this Map */
  public void set(ExportMap map) {
    if (map == null) {
      throw new IllegalArgumentException("invalid (null) map");
    }

    exportData.set(map.getExportKey(), map.getExportData());
  }