-
Bug
-
Resolution: Fixed
-
P4
-
1.4.1
-
tiger
-
sparc
-
solaris_8
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2134944 | 1.4.2_12 | Hao Dong | P4 | Resolved | Fixed | b02 |
Name: rmT116609 Date: 02/24/2003
FULL PRODUCT VERSION :
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
SunOS titan 5.8 Generic_108528-18 sun4u sparc SUNW,Ultra-60
A DESCRIPTION OF THE PROBLEM :
Choice.select(int sel) seems to post an event to the event
queue which then calls select again. If items have been
removed from the Choice in the meantime, an
IllegalArgumentException occurs.
java.lang.IllegalArgumentException: illegal Choice item
position: 3
at java.awt.Choice.select(Choice.java:426)
at sun.awt.motif.MChoicePeer$1.run(MChoicePeer.java:105)
at
java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
at
java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1.In event handler, select(3) on the choice
2.Then in the same handler, remove all but two items from
the choiuce
3.Observe the exception.
This is illustrated in the source code; just compile and run
on a Motif system.
ERROR MESSAGES/STACK TRACES THAT OCCUR :
java.lang.IllegalArgumentException: illegal Choice item position: 3
at java.awt.Choice.select(Choice.java:426)
at sun.awt.motif.MChoicePeer$1.run(MChoicePeer.java:105)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
public class ctest extends Frame implements ActionListener
{ private Choice choice;
public static void main(String [] args)
{ new ctest(); }
ctest()
{ choice = new Choice();
choice.add(" ");
for (int i = 1; i <= 5; i ++)
choice.add("Initial item " + i);
add(BorderLayout.NORTH, choice);
Button b = new Button("Adjust");
add(BorderLayout.SOUTH, b);
b.addActionListener(this);
pack(); show();
}
public void actionPerformed(ActionEvent e)
{ choice.select(3);
for (int i = choice.getItemCount()-1; i >= 1; i --)
choice.remove(i);
choice.add("Revised item 1");
choice.select(1);
}
}
---------- END SOURCE ----------
(Review ID: 181620)
======================================================================
FULL PRODUCT VERSION :
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
SunOS titan 5.8 Generic_108528-18 sun4u sparc SUNW,Ultra-60
A DESCRIPTION OF THE PROBLEM :
Choice.select(int sel) seems to post an event to the event
queue which then calls select again. If items have been
removed from the Choice in the meantime, an
IllegalArgumentException occurs.
java.lang.IllegalArgumentException: illegal Choice item
position: 3
at java.awt.Choice.select(Choice.java:426)
at sun.awt.motif.MChoicePeer$1.run(MChoicePeer.java:105)
at
java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
at
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
at
java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1.In event handler, select(3) on the choice
2.Then in the same handler, remove all but two items from
the choiuce
3.Observe the exception.
This is illustrated in the source code; just compile and run
on a Motif system.
ERROR MESSAGES/STACK TRACES THAT OCCUR :
java.lang.IllegalArgumentException: illegal Choice item position: 3
at java.awt.Choice.select(Choice.java:426)
at sun.awt.motif.MChoicePeer$1.run(MChoicePeer.java:105)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
public class ctest extends Frame implements ActionListener
{ private Choice choice;
public static void main(String [] args)
{ new ctest(); }
ctest()
{ choice = new Choice();
choice.add(" ");
for (int i = 1; i <= 5; i ++)
choice.add("Initial item " + i);
add(BorderLayout.NORTH, choice);
Button b = new Button("Adjust");
add(BorderLayout.SOUTH, b);
b.addActionListener(this);
pack(); show();
}
public void actionPerformed(ActionEvent e)
{ choice.select(3);
for (int i = choice.getItemCount()-1; i >= 1; i --)
choice.remove(i);
choice.add("Revised item 1");
choice.select(1);
}
}
---------- END SOURCE ----------
(Review ID: 181620)
======================================================================
- backported by
-
JDK-2134944 JDK 1.4.1: Race conditions in Motif java.awt.Choice
-
- Resolved
-