Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6371910

Actions regression when changing enabled via putValue("enabled", ...);

XMLWordPrintable

    • b50
    • 6
    • b76
    • x86
    • windows_xp

      The following works in 1.5, but not the latest 1.6 builds:

      import java.awt.*;
      import java.awt.event.*;
      import javax.swing.*;

      public class ActionTest {
          public static void main(String[] args) {
              Action action = new FooAction();
              JToolBar toolBar = new JToolBar();
              JButton toolBarButton = toolBar.add(action);
              JButton button = new JButton(action);

              // action.setEnabled(false);
              action.putValue("enabled", Boolean.FALSE);
              if (toolBarButton.isEnabled()) {
                  System.out.println("toolbar button should not be enabled");
              }
              if (button.isEnabled()) {
                  System.out.println("button should not be enabled");
              }
          }

          private static class FooAction extends AbstractAction {
              public void actionPerformed(ActionEvent e) {
              }
          }
      }

            svioletsunw Scott Violet (Inactive)
            svioletsunw Scott Violet (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: