Index: trunk/src/org/openstreetmap/josm/gui/widgets/VerticallyScrollablePanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/widgets/VerticallyScrollablePanel.java	(revision 11940)
+++ trunk/src/org/openstreetmap/josm/gui/widgets/VerticallyScrollablePanel.java	(revision 11941)
@@ -21,12 +21,27 @@
     }
 
+    /**
+     * Constructs a new {@code VerticallyScrollablePanel}.
+     * @param isDoubleBuffered  a boolean, true for double-buffering, which
+     *        uses additional memory space to achieve fast, flicker-free updates
+     */
     public VerticallyScrollablePanel(boolean isDoubleBuffered) {
         super(isDoubleBuffered);
     }
 
+    /**
+     * Constructs a new {@code VerticallyScrollablePanel}.
+     * @param layout  the LayoutManager to use
+     * @param isDoubleBuffered  a boolean, true for double-buffering, which
+     *        uses additional memory space to achieve fast, flicker-free updates
+     */
     public VerticallyScrollablePanel(LayoutManager layout, boolean isDoubleBuffered) {
         super(layout, isDoubleBuffered);
     }
 
+    /**
+     * Constructs a new {@code VerticallyScrollablePanel}.
+     * @param layout  the LayoutManager to use
+     */
     public VerticallyScrollablePanel(LayoutManager layout) {
         super(layout);
@@ -63,5 +78,5 @@
 
     @Override
-    public int getScrollableUnitIncrement(Rectangle arg0, int arg1, int arg2) {
+    public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
         return 10;
     }
