Package javax.swing

Examples of javax.swing.JScrollBar.addAdjustmentListener()


    {
      //  Scroll the viewport to the end.
      scrollBar.removeAdjustmentListener( this );
      value = maximum - extent;
      scrollBar.setValue( value );
      scrollBar.addAdjustmentListener( this );
    }

    if (adjustScrollBar && viewportPosition == START)
    {
      //  Keep the viewport at the same relative viewportPosition
View Full Code Here


    {
      //  Keep the viewport at the same relative viewportPosition
      scrollBar.removeAdjustmentListener( this );
      value = value + maximum - previousMaximum;
      scrollBar.setValue( value );
      scrollBar.addAdjustmentListener( this );
    }

    previousValue = value;
    previousMaximum = maximum;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.