Examples of EnableAction


Examples of org.xnap.gui.action.EnableAction

   
        autoFetchNapigatorIntervalTextField = new ValidatedTextField
      (napPrefs.getAutoFetchNapigatorInterval() + "", 5,
       ValidatedTextField.NUMBERS_INT);
    autoFetchNapigatorAction
      = new EnableAction
        (XNap.tr("Refresh lists every"),
         new Component[] { autoFetchNapigatorIntervalTextField },
         napPrefs.getAutoFetchNapigator());
    GridBagHelper.addComponent
      (jpStartup, new XNapCheckBox(autoFetchNapigatorAction));
View Full Code Here

Examples of xnap.gui.EnableAction

  jtNick = new JTextField(server.getUsername(), 20);
  jtPassword = new JTextField(server.getPassword(), 20);
  jtEmail = new JTextField(server.getEmail(), 20);

  Component[] c = new Component[] { jtNick, jtPassword, jtEmail };
  EnableAction ac
      = new EnableAction(Plugin.tr("Customize", 1, 1), c, custom);
  jcbCustomizeUser = ac.getCheckBox();
  GridBagHelper.add(jpUser, jcbCustomizeUser);

  GridBagHelper.addLabel(jpUser, Plugin.tr("Nickname"));
  GridBagHelper.add(jpUser, jtNick);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.