/**
   * Enables the finish button when there's at least one selected configuration
   *
   * @see org.eclipse.jface.wizard.Wizard#performFinish()
   * @return
   */
  public boolean performFinish() {
    this.selectedConfigs = page.getSelectedConfigs();
    this.tableNames = page.getTableNames();
    if (this.selectedConfigs != null && this.tableNames != null) {
      if (this.selectedConfigs.size() > 0) {

        return true;
      }
    }
    return false;
  }