-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.3.1
-
x86
-
windows_nt
Name: asR10013 Date: 02/05/2001
Bug description ---> JSlider component behaves incorrectly when range limits are near of integer value limits.
****************************************************************************
Platforms:
=============
Windows NT 4.0
JDK, switches Info:
===================
java version "1.3.1-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-beta-b15)
Java HotSpot(TM) Client VM (build 1.3.1beta-b15, mixed mode)
How to reproduce:
====================
The following program creates frame window which contains 2 JSlider components and 2 JLabel components.
JLabel components show min, max and current values of corresponding JSlider.
The first JSlider has a range of (-2 000 000 000; 2 000 000 000) and the second one has (-100; 100) range and
both of them initially point to it's own max value.
1. Compile and run the following program.
2. Make sure the first JSlider is focused.
3. Push Page Up several times.
You will see the first slider does not stop moving even if max value is reached and the current value of the first slider
is dropped down to the min value after max value is reached.
The second slider is placed on the frame as a sample of correct behavior.
Source
======
--------------- test.java ------------------------------------
import javax.swing.*;
import javax.swing.event.*;
import java.awt.GridLayout;
import java.awt.Container;
public class test extends JFrame implements ChangeListener{
static JSlider aSlider1, aSlider2;
static JLabel aLabel1, aLabel2;
public static void main( String[] args ) throws Exception {
test f = new test();
f.setSize(500, 200);
f.setDefaultCloseOperation( EXIT_ON_CLOSE );
Container cont = f.getContentPane();
cont.setLayout( new GridLayout(4,1) );
//
cont.add( aSlider1 = new JSlider(SwingConstants.HORIZONTAL, -2000000000, 2000000000, 2000000000) );
aSlider1.setVisible( true );
aSlider1.addChangeListener( f );
//
cont.add( aLabel1 = new JLabel() );
//
cont.add( aSlider2 = new JSlider(SwingConstants.HORIZONTAL, -100, 100, 100) );
aSlider2.setVisible( true );
aSlider2.addChangeListener( f );
//
cont.add( aLabel2 = new JLabel() );
//
f.stateChanged( null );
//
f.setVisible( true );
f.show();
aSlider1.grabFocus();
};
public void stateChanged( ChangeEvent e ) {
aLabel1.setText( "Min: " + aSlider1.getMinimum() +
" max: " + aSlider1.getMaximum() +
" Value1: " + aSlider1.getValue() );
aLabel2.setText( "Min: " + aSlider2.getMinimum() +
" max: " + aSlider2.getMaximum() +
" Value2: " + aSlider2.getValue() );
};
};
--------------- end test.java --------------------------------
======================================================================