Module java.desktop
Package java.awt

Class ScrollPaneAdjustable

    • Method Detail

      • getOrientation

        public int getOrientation()
        Returns the orientation of this scrollbar.
        Specified by:
        getOrientation in interface Adjustable
        Returns:
        the orientation of this scrollbar, either Adjustable.HORIZONTAL or Adjustable.VERTICAL
      • setMinimum

        public void setMinimum​(int min)
        This method should NOT be called by user code. This method is public for this class to properly implement Adjustable interface.
        Specified by:
        setMinimum in interface Adjustable
        Parameters:
        min - the minimum value
        Throws:
        AWTError - Always throws an error when called.
      • setMaximum

        public void setMaximum​(int max)
        This method should NOT be called by user code. This method is public for this class to properly implement Adjustable interface.
        Specified by:
        setMaximum in interface Adjustable
        Parameters:
        max - the maximum value
        Throws:
        AWTError - Always throws an error when called.
      • setVisibleAmount

        public void setVisibleAmount​(int v)
        This method should NOT be called by user code. This method is public for this class to properly implement Adjustable interface.
        Specified by:
        setVisibleAmount in interface Adjustable
        Parameters:
        v - the length of the indicator
        Throws:
        AWTError - Always throws an error when called.
      • setValueIsAdjusting

        public void setValueIsAdjusting​(boolean b)
        Sets the valueIsAdjusting property.
        Parameters:
        b - new adjustment-in-progress status
        Since:
        1.4
        See Also:
        getValueIsAdjusting()
      • getValueIsAdjusting

        public boolean getValueIsAdjusting()
        Returns true if the value is in the process of changing as a result of actions being taken by the user.
        Returns:
        the value of the valueIsAdjusting property
        See Also:
        setValueIsAdjusting(boolean)
      • setValue

        public void setValue​(int v)
        Sets the value of this scrollbar to the specified value.

        If the value supplied is less than the current minimum or greater than the current maximum, then one of those values is substituted, as appropriate.

        Specified by:
        setValue in interface Adjustable
        Parameters:
        v - the new value of the scrollbar
      • toString

        public String toString()
        Returns a string representation of this scrollbar and its values.
        Overrides:
        toString in class Object
        Returns:
        a string representation of this scrollbar.
      • paramString

        public String paramString()
        Returns a string representing the state of this scrollbar. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null.
        Returns:
        the parameter string of this scrollbar.