-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
None
-
05
-
x86
-
linux_redhat_7.2
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2108025 | 1.4.2 | Oleg Sukhodolsky | P3 | Resolved | Fixed | mantis |
The CardLayout class in Merlin has been rewritten and is now incompatiable with all previous versions of CardLayout. Instead of using a Hashtable to map the names of the components a Vector of private class Card is used. The CardLayout assumes that the Cards in this Vector are added in the same order as the components in the Container being layed out. This is an incorrect assumption because components can be inserted into a Container and do not always have to be added at the end of the list of components. The following example demonstrates this by inserting components into a Frame with CardLayout. The Components are added in reverse order. When you click on the card it will advance to the next card. On all previous versions of Java next advanced to the next card in the Frame's child list. In Merlin it now advvances to the next Card based on the order they were added. To reproduce, run this program under versions before Merlin and notice the ordering when you click on the Frame and then do the same under Merlin:
import java.awt.*;
import java.awt.event.*;
public class CardLayoutOrdering
{
public static void main (String args[])
{
Frame f = new Frame();
f.setLayout(new CardLayout());
for (int i = 1; i <= 10; i++)
{
f.add(new Card(i), String.valueOf(i), 0);
}
f.setSize(500,500);
f.setVisible(true);
}
}
class Card extends Component
{
public Card (int n)
{
index = n;
addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
CardLayout l = (CardLayout)getParent().getLayout();
l.next(getParent());
}
});
}
public void paint(Graphics g)
{
g.drawString(String.valueOf(index), 100, 100);
}
private int index;
}
import java.awt.*;
import java.awt.event.*;
public class CardLayoutOrdering
{
public static void main (String args[])
{
Frame f = new Frame();
f.setLayout(new CardLayout());
for (int i = 1; i <= 10; i++)
{
f.add(new Card(i), String.valueOf(i), 0);
}
f.setSize(500,500);
f.setVisible(true);
}
}
class Card extends Component
{
public Card (int n)
{
index = n;
addMouseListener(new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
CardLayout l = (CardLayout)getParent().getLayout();
l.next(getParent());
}
});
}
public void paint(Graphics g)
{
g.drawString(String.valueOf(index), 100, 100);
}
private int index;
}
- backported by
-
JDK-2108025 Inserting items in a Container with CardLayout does not work since Merlin
-
- Resolved
-
- relates to
-
JDK-4546123 CardLayout becomes unusable after deleting an element
-
- Resolved
-