src/share/classes/java/awt/Scrollbar.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -654,10 +654,13 @@
     public int getVisibleAmount() {
         return getVisible();
     }
 
     /**
+     * Returns the visible amount of this scroll bar.
+     *
+     * @return the visible amount of this scroll bar
      * @deprecated As of JDK version 1.1,
      * replaced by <code>getVisibleAmount()</code>.
      */
     @Deprecated
     public int getVisible() {

@@ -727,10 +730,14 @@
     public void setUnitIncrement(int v) {
         setLineIncrement(v);
     }
 
     /**
+     * Sets the unit increment for this scroll bar.
+     *
+     * @param  v the increment value
+     *
      * @deprecated As of JDK version 1.1,
      * replaced by <code>setUnitIncrement(int)</code>.
      */
     @Deprecated
     public synchronized void setLineIncrement(int v) {

@@ -766,10 +773,13 @@
     public int getUnitIncrement() {
         return getLineIncrement();
     }
 
     /**
+     * Returns the unit increment for this scrollbar.
+     *
+     * @return the unit increment for this scrollbar
      * @deprecated As of JDK version 1.1,
      * replaced by <code>getUnitIncrement()</code>.
      */
     @Deprecated
     public int getLineIncrement() {

@@ -795,10 +805,13 @@
     public void setBlockIncrement(int v) {
         setPageIncrement(v);
     }
 
     /**
+     * Sets the block increment for this scroll bar.
+     *
+     * @param  v the block increment
      * @deprecated As of JDK version 1.1,
      * replaced by <code>setBlockIncrement()</code>.
      */
     @Deprecated
     public synchronized void setPageIncrement(int v) {

@@ -831,10 +844,14 @@
     public int getBlockIncrement() {
         return getPageIncrement();
     }
 
     /**
+     * Returns the block increment of this scroll bar.
+     *
+     * @return the block increment of this scroll bar
+     *
      * @deprecated As of JDK version 1.1,
      * replaced by <code>getBlockIncrement()</code>.
      */
     @Deprecated
     public int getPageIncrement() {