I have a JTable with several columns and rows. Once the user has moved the column, I would like to be informed via an event of some sort, so that I can do some calculations. However, since all I needed to do was
`table.getTableHeader().setReorderingAllowed(true);`
to get the columns to be movable, I am somewhat unsure what I can use to find out once they have been moved.
Any suggesions?
-F