private void updatePrimaryEIATab() {
      if (MainWindow.tabPane.isPrimaryTabsOpened()) {
        MainWindow.tabPane.removeTabAt(0);
      }

      String ft = "Identity Headers";

      EIATable eiaTable = MainWindow.getIniEiaTable();
      WorkingTablePane pane = new WorkingTablePane(eiaTable);

      MainWindow.tabPane.insertTab(ft, null, pane, null, 0);
      MainWindow.tabPane.setToolTipTextAt(0, "identity attribute headers of EDF files");

      // MainWindow.tabPane.setPrimaryTabsOpened(true);
    }
  private void updatePrimaryEIATab() {
    if (MainWindow.tabPane.isPrimaryTabsOpened()) {
      MainWindow.tabPane.removeTabAt(0);
    }

    String ft = "Identity attributes";

    //      String ft = "<html><body leftmargin=10 topmargin=10 marginwidth=10" +
    //      "marginheight=10>De-identify</body></html>";

    EIATable eiaTable = MainWindow.getIniEiaTable();
    WorkingTablePane pane = new WorkingTablePane(eiaTable);
    MainWindow.tabPane.insertTab(ft, null, pane, null, 0);
    MainWindow.tabPane.setToolTipTextAt(0, "Deidentify Attributes of EDF Files");

    // MainWindow.tabPane.setPrimaryTabsOpened(true);
  }
 /** Validates the EIA table and stores corresponding incompliances */
 public void validateEiaTable() {
   EIATable table = MainWindow.getIniEiaTable();
   MainWindow.setEiaIncompliances(table.parseEIATable());
 }