Package de.chris_soft.utilities.swing.wizard

Examples of de.chris_soft.utilities.swing.wizard.WizardCheckBoxInputListener


    // Set default values if missing.
    wizard.getContent(PROP_KEY_SHALL_SEND_MAIL, "true");
    wizard.getContent(PROP_KEY_SET_FULLTEXT_INTO_MAIL_BODY, "true");

    p2.addCheckBoxInput("Send mail per document", PROP_KEY_SHALL_SEND_MAIL, new WizardCheckBoxInputListener() {
      @Override
      public void checkInputChanged(String key, boolean checked) {
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_ADDRESS).setEnabled(checked);
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_LOGIN).setEnabled(checked);
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_PW).setEnabled(checked);
View Full Code Here


    wizard.getContent(PROP_KEY_DOCUMENT_SERVER_SHALL_USE, "false");
    wizard.getContent(PROP_KEY_DOCUMENT_SERVER_NAME, "localhost");
    wizard.getContent(PROP_KEY_DOCUMENT_SERVER_PORT, "23871");
    wizard.getContent(PROP_KEY_DOCUMENT_SERVER_PASSWORD, "");

    p4.addCheckBoxInput("Use HTTP document server", PROP_KEY_DOCUMENT_SERVER_SHALL_USE, new WizardCheckBoxInputListener() {
      @Override
      public void checkInputChanged(String key, boolean checked) {
        p4.getComponentByName(PROP_KEY_DOCUMENT_SERVER_PORT).setEnabled(checked);
      }
    });
View Full Code Here

    // Set default values if missing.
    wizard.getContent(PROP_KEY_SHALL_SEND_MAIL, "true");
    wizard.getContent(PROP_KEY_SET_FULLTEXT_INTO_MAIL_BODY, "true");

    p2.addCheckBoxInput("Send mail per document", PROP_KEY_SHALL_SEND_MAIL, new WizardCheckBoxInputListener() {
      @Override
      public void checkInputChanged(String key, boolean checked) {
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_ADDRESS).setEnabled(checked);
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_LOGIN).setEnabled(checked);
        p2.getComponentByName(PROP_KEY_SENDER_MAIL_PW).setEnabled(checked);
View Full Code Here

TOP

Related Classes of de.chris_soft.utilities.swing.wizard.WizardCheckBoxInputListener

Copyright © 2018 www.massapicom. 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.