Re: RFR: 8271474: Tree-/TableCell: inconsistent edit event firing pattern

2021-09-24 Thread Ajit Ghaisas
On Tue, 7 Sep 2021 14:53:50 GMT, Jeanette Winzenburg wrote: > this PR fixes the inconsistent event firing pattern in cell's xxEdit methods > (please see the issue for more details): > > - fires event if column != null > - accesses table state if table != null > > The first requires a change i

Re: RFR: 8271474: Tree-/TableCell: inconsistent edit event firing pattern

2021-09-22 Thread Marius Hanl
On Tue, 7 Sep 2021 14:53:50 GMT, Jeanette Winzenburg wrote: > this PR fixes the inconsistent event firing pattern in cell's xxEdit methods > (please see the issue for more details): > > - fires event if column != null > - accesses table state if table != null > > The first requires a change i

RFR: 8271474: Tree-/TableCell: inconsistent edit event firing pattern

2021-09-07 Thread Jeanette Winzenburg
this PR fixes the inconsistent event firing pattern in cell's xxEdit methods (please see the issue for more details): - fires event if column != null - accesses table state if table != null The first requires a change in CellEditEvent which now allows null table in its constructor. Added tests