I have a specific requirement that all children of a particular JComponent have double buffering turned off. I can recurse through it easily enough and disable them when needed, but I'd like to detect the addition of new children components regardless of their position in the hierarchy and disable it then.
I've taken a look at addHierarchyChangeListener but it seems to only detect changes in parents, not children.
Can someone point me down the right path?