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

several methods of LayerUI should mention that they are delegated to Scrollable JLayer's view

XMLWordPrintable

      Reference implementation of methods of class javax.swing.plaf.LayerUI:

       - getScrollableUnitIncrement(JLayer<? extends V>,Rectangle,int,int)
       - getScrollableTracksViewportWidth()
       - getScrollableTracksViewportHeight()
       - getScrollableBlockIncrement(Rectangle, int, int)
       - getPreferredScrollableViewportSize()

      delegate invocation to passed JLayer's view if this view is an instance of Scrollable.

      For example:

          public int getScrollableUnitIncrement(JLayer<? extends V> l,
                                                Rectangle visibleRect,
                                                int orientation, int direction) {
              if (l.getView() instanceof Scrollable) {
                  return ((Scrollable)l.getView()).getScrollableUnitIncrement(
                          visibleRect, orientation, direction);
              }
              return 1;
          }

      Seems that this important aspect of behavior might be specified.
      The following JCK tests verify mentioned behavior:
      api/javax_swing/JLayer/index.html#General[getPreferredScrollableViewportSize_scrollableView]
      api/javax_swing/JLayer/index.html#General[getScrollableBlockIncrement_scrollableView]
      api/javax_swing/JLayer/index.html#General[getScrollableTracksViewportHeight_scrollableView]
      api/javax_swing/JLayer/index.html#General[getScrollableTracksViewportWidth_scrollableView]
      api/javax_swing/JLayer/index.html#General[getScrollableUnitIncrement_scrollableView]

            Unassigned Unassigned
            dbessono Dmitry Bessonov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: