/**
   * The constructor.
   *
   * @param idata The installation data.
   * @param listener The installation listener.
   */
  public Unpacker(InstallData idata, InstallListener listener) {
    super("IzPack - Unpacker thread");

    this.idata = idata;
    this.listener = listener;

    // Initialize the variable substitutor
    vs = new VariableSubstitutor(idata.getVariableValueMap());
  }