Name: diC59631 Date: 04/29/98
The JDK1.1.6M jdb does not respond.
Following is the message and the program to demonstrate the problem.
e:\jdb
Initializing jdb
>run choiceBug
running
main[1]
The jdb does not show windown and respond here.
import java.awt.*;
public class choiceBug extends Frame {
public static void main(String argv[]) {
choiceBug win = new choiceBug("jdb does not respond");
win.setSize(200,200);
win.setVisible(true);
}
choiceBug(String title) {
super(title);
Panel p = new Panel();
Choice ch = new Choice();
p.add(ch);
add("Center",p);
}
}
(Review ID: 28540)
======================================================================
ingrid.yao@Eng 1998-09-22
Sybase reported the same problem that empty choice components throw an
exception when run through a debugger. This affects both jdb and the Sybase
PowerJ debugger.
This one affects many of sybase customers and generates a lot
of calls to their support group.