-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
sparc
-
generic
Name: pzC71691 Date: 07/21/99
When Action with non-empty NAME property is set to an existing
JButton with non-empty text via setAction(), JButton text becomes
null. Also constructor of JButton witn Action argument doesn't
initialize JButton text to Action.NAME property.
The problem exists in the JDK1.3L build.
The test case:
-------------------------------------------------------------
import javax.swing.*;
import java.awt.event.*;
public class ButtonBug extends JFrame {
public void test() {
getContentPane().setLayout(new FlowLayout());
JButton bt1 = new JButton("Button1");
getContentPane().add(bt1);
AbstractAction al = new AbstractAction() {
public void actionPerformed(ActionEvent e) {
}
};
al.putValue(Action.NAME, "Action");
bt1.setAction(al);
JButton bt2 = new JButton(al);
getContentPane().add(bt2);
setBounds(20,20,200,200);
setVisible(true);
}
public static void main(String[] argv) {
ButtonBug b = new ButtonBug();
b.test();
}
}
---------------------------------------------------------------------
======================================================================
- duplicates
-
JDK-4266524 JButton.setAction or new JButton( Action ) do not behave as expected.
-
- Resolved
-