Issue Importance: Mid.
The problem is as follows: When using the "Import Data" function, the user can't import one data file with one set of headers, and then another data file with a different set of headers.
The reason for this is that the program never checks to see if the user wants to switch from using one set of headers to another.
There are a few ways to fix this, but the one that I want implemented is to add a JMenuItem in the "Data" Drop-down Menu called "Reset Data". The point of this option will be to reset the contents of the HeaderData object so as to allow for a new data file with different headers to be used.
Notes:
ChangeListener Set should not be erased when the HeaderData object is reset!
I advise against using a JOptionPane question for this because it doesn't explicitly lead the user to know how to resolve this issue. A new menu option allows the user to visually understand how to resolve the situation.
Issue Importance: Mid. The problem is as follows: When using the "Import Data" function, the user can't import one data file with one set of headers, and then another data file with a different set of headers.
The reason for this is that the program never checks to see if the user wants to switch from using one set of headers to another.
There are a few ways to fix this, but the one that I want implemented is to add a JMenuItem in the "Data" Drop-down Menu called "Reset Data". The point of this option will be to reset the contents of the HeaderData object so as to allow for a new data file with different headers to be used.
Notes: