Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2023-01-28 Thread Michael Strauß
On Fri, 27 Jan 2023 22:01:46 GMT, John Hendrikx wrote: > Can this not be done in a way that doesn't require this `underInitialization` > flag? That's a good idea, and a also a good observation that the constructor only really sets `treeVisible` to `true`. I've updated the PR accordingly,

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2023-01-27 Thread John Hendrikx
On Fri, 26 Aug 2022 00:22:54 GMT, Michael Strauß wrote: > It's true that `Parent.getChildren()` must not return `null`, and that we > shouldn't add null checks to protect against bugs. > > However, in this specific instance, `Node.setTreeVisible` is called from the > constructor of `Node`. At

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2023-01-26 Thread Michael Strauß
On Thu, 25 Aug 2022 22:18:44 GMT, Michael Strauß wrote: >> `Node` adds InvalidationListeners to its parent's `disabled` and >> `treeVisible` properties and calls its own `updateDisabled()` and >> `updateTreeVisible(boolean)` methods when the property values change. >> >> These listeners are

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2022-08-25 Thread Michael Strauß
On Fri, 26 Aug 2022 03:43:49 GMT, Nir Lisker wrote: > I haven't looked at the code yet, but in general it's not considered a good > idea to expose an object before it's instantiated. Not sure if we have a > choice here though. I agree, that's why the `underConstruction` flag is used to

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2022-08-25 Thread Nir Lisker
On Thu, 25 Aug 2022 22:18:44 GMT, Michael Strauß wrote: >> `Node` adds InvalidationListeners to its parent's `disabled` and >> `treeVisible` properties and calls its own `updateDisabled()` and >> `updateTreeVisible(boolean)` methods when the property values change. >> >> These listeners are

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2022-08-25 Thread Michael Strauß
On Thu, 25 Aug 2022 22:18:44 GMT, Michael Strauß wrote: >> `Node` adds InvalidationListeners to its parent's `disabled` and >> `treeVisible` properties and calls its own `updateDisabled()` and >> `updateTreeVisible(boolean)` methods when the property values change. >> >> These listeners are

Re: RFR: 8290765: Remove parent disabled/treeVisible listeners [v2]

2022-08-25 Thread Michael Strauß
> `Node` adds InvalidationListeners to its parent's `disabled` and > `treeVisible` properties and calls its own `updateDisabled()` and > `updateTreeVisible(boolean)` methods when the property values change. > > These listeners are not required, since `Node` can easily call the >