-
Bug
-
Resolution: Fixed
-
P2
-
1.1.5
-
None
-
1.1.5
-
sparc
-
solaris_9
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2017857 | 1.2.0 | Janet Koenig | P2 | Resolved | Fixed | 1.2beta3 |
masaki.katakai@Japan 1997-11-11
List shrinks when item is appened on JDK1.1.5'G'.
Please try following sample to reproduce the problem.
import java.awt.*;
import java.applet.*;
public class listtest extends Applet {
List list;
public void init(){
setLayout(new BorderLayout());
add("North", new Button("set"));
add("Center", list=new List(10));
}
public boolean action(Event e, Object arg) {
list.addItem("item");
return true;
}
}
<applet name="listtest"
code="listtest.class"
width="200"
height="300"
align="Top">
</applet>
The 'List' is created in 'Center' of applet. When 'set' button is clicked,
item 'item' is inserted into the list but the List shrinks.
I found the problem on Views first. The problem always happens on NameView.
The List of right side shrinks after searching.
I belive it's a regression from JDK1.1.4 because I could not
reproduce the problem with JDK1.1.4.
List shrinks when item is appened on JDK1.1.5'G'.
Please try following sample to reproduce the problem.
import java.awt.*;
import java.applet.*;
public class listtest extends Applet {
List list;
public void init(){
setLayout(new BorderLayout());
add("North", new Button("set"));
add("Center", list=new List(10));
}
public boolean action(Event e, Object arg) {
list.addItem("item");
return true;
}
}
<applet name="listtest"
code="listtest.class"
width="200"
height="300"
align="Top">
</applet>
The 'List' is created in 'Center' of applet. When 'set' button is clicked,
item 'item' is inserted into the list but the List shrinks.
I found the problem on Views first. The problem always happens on NameView.
The List of right side shrinks after searching.
I belive it's a regression from JDK1.1.4 because I could not
reproduce the problem with JDK1.1.4.
- backported by
-
JDK-2017857 JDK1.1.5'G': List shrinks by addItem()
-
- Resolved
-