On Tue, 20 Jan 2026 09:12:44 GMT, Sergey Bylokhov <[email protected]> wrote:
> The patch implements serialization for editable JTables. Currently, most > classes responsible for JTable editing are not serializable, so trying to > serialize them causes an exception. The patch has two parts: > > - The editable JTable is reset to non-editable using the common pattern > stopCellEditing + cancelCellEditing. This is added to the > compWriteObjectNotify method, which acts as an entry point for serialization > of Swing components. It allows actions to be performed before the parent > classes are serialized. > > - The editing coordinates for all JTables are reset to -1. Before this > patch, even non-editable JTables had their coordinates reset to 0 from -1 > because the fields were transient. @prsadhuk @TejeshR13 please review ------------- PR Comment: https://git.openjdk.org/jdk/pull/29313#issuecomment-3803180225
