Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8260336

LayoutManager2.invalidateLayout is not sufficient to avoid stale cached data

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P3 P3
    • tbd
    • 8, 15, 16
    • client-libs
    • None

      The invalidateLayout method is advertised as a way to ensure that a layout manager that caches data discards the data when the data may no longer be valid. However, validation in Swing is asynchronous: "Validation will occur after all currently pending events have been dispatched," which means that pending events could make multiple invalidating changes. However, the invalidateLayout method is called only if the component is not already invalid. So, between the first invalidation and the deferred validation, invalidateLayout will not be called again, but the layout manager may have been called to provide sizing information and cached data in doing so. That cached data will not be discarded.

      The attached test program demonstrates the problem using a custom layout manager. The stale cached data (red) remains even after the frame is packed.

      Bug JDK-6893839 demonstrates the problem using BoxLayout.

            psadhukhan Prasanta Sadhukhan
            alans Alan Snyder
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: