simplification of FeatureSettings inner classes
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 9 Jan 2019 05:38:31 +0000 (23:38 -0600)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 9 Jan 2019 05:38:31 +0000 (23:38 -0600)
No need here for additional private inner variables that cover outer
class's versions of the same thing. No need for a pointer to the outer
class, as "me" is already the "this" of the other class.

Added necessary JTable.repaint() to fix the problem that "stopping"
editing was relying upon the invalidation to be maintained throughout
the modal dialog, but JavaScript cannot keep the thread from doing its
repaints. So in JavaScript, while the modal dialog is loading, the
validate sequence from stopping editing fires. Thus, when the editing
dialog closes, it is already validated for the previous value, and we
need to explicitly repaint the table to see the update.


No differences found