当只点击一行(例子中数字为rowIndex)时,事件发生的顺序是ListSelection、MousePressed、ListSelection、MouseReleased、MouseClicked
11:24:48,921 INFO [MyTableDialog] ListSelection: getFirstIndex-0|getLastIndex-13
11:24:48,921 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-0
11:24:48,921 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-0
11:24:48,921 INFO [MyTableDialog] MousePressed:0
11:24:49,031 INFO [MyTableDialog] ListSelection: getFirstIndex-0|getLastIndex-13
11:24:49,031 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-0
11:24:49,031 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-0
11:24:49,031 INFO [MyTableDialog] MouseReleased:0
11:24:49,046 INFO [MyTableDialog] MouseClicked:0
如果从一行拖选到另一行时,事件发生的顺序是ListSelection、MousePressed、ListSelection、MouseReleased,没有MouseClicked事件,并且在拖选的过程中,每拖过一行都会触发一次ListSelection事件,该事件保存了上次拖过的行号(getFirstIndex)和当前行号(getLastIndex)
11:26:35,421 INFO [MyTableDialog] ListSelection: getFirstIndex-0|getLastIndex-2
11:26:35,421 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-2
11:26:35,421 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-2
11:26:35,421 INFO [MyTableDialog] MousePressed:2
11:26:35,625 INFO [MyTableDialog] ListSelection: getFirstIndex-2|getLastIndex-3
11:26:35,625 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-2
11:26:35,625 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-3
11:26:35,703 INFO [MyTableDialog] ListSelection: getFirstIndex-3|getLastIndex-4
11:26:35,703 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-2
11:26:35,703 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-4
11:26:35,843 INFO [MyTableDialog] ListSelection: getFirstIndex-4|getLastIndex-5
11:26:35,843 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-2
11:26:35,843 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-5
11:26:36,187 INFO [MyTableDialog] ListSelection: getFirstIndex-0|getLastIndex-5
11:26:36,187 INFO [MyTableDialog] ListSelection: getAnchorSelectionIndex-2
11:26:36,187 INFO [MyTableDialog] ListSelection: getLeadSelectionIndex-5
11:26:36,187 INFO [MyTableDialog] MouseReleased:5