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

setText on TextField with setEchoCharacter in DialogWindow display unmasked.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.0.2
    • client-libs
    • None
    • generic
    • solaris_2.4

      Using setText on a textField with a setEchoCharacter in a Dialog Window displays
      the unmasked characters.

      Test example:
      import java.awt.*;

      public class DialogWindow extends Frame {
          private boolean inAnApplet = true;
          private SimpleDialog dialog;

          public DialogWindow() {
              Button button = new Button("Click to bring up dialog");
              Panel panel = new Panel();
              panel.add(button);
              add("South", panel);
          }

          public boolean handleEvent(Event event) {
              if (event.id == Event.WINDOW_DESTROY) {
                  if (inAnApplet) {
                      dispose();
                  } else {
                      System.exit(0);
                  }
              }
              return super.handleEvent(event);
          }

          public boolean action(Event event, Object arg) {
              if (dialog == null) {
                  dialog = new SimpleDialog(this, "A Simple Dialog");
              }
              dialog.show();
              return true;
          }

          public static void main(String args[]) {
              DialogWindow window = new DialogWindow();
              window.inAnApplet = false;

              window.setTitle("DialogWindow Application");
              window.pack();
              window.show();
          }
      }

      class SimpleDialog extends Dialog {
          TextField field;

          SimpleDialog(Frame dw, String title) {
              super(dw, title, false);

              this.addNotify();

              field = new TextField();
              field.setEchoCharacter ('*');
              this.add("Center", field);

              field.setText ("The magic word is ");

              //Initialize this dialog to its preferred size.
              pack();
          }

      }

            lbunnisunw Lara Bunni (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: