Package net.laubenberger.bogatyr.view.swing

Examples of net.laubenberger.bogatyr.view.swing.ComboBox


    tfInput.setEditable(false);
    tfOutput = new TextField(null == scrambler.getModuleData().getFile(KEY_UNSCRAMBLE_OUTPUT) ? null : scrambler
        .getModuleData().getFile(KEY_UNSCRAMBLE_OUTPUT).getAbsolutePath(),
        localizer.getTooltip(HelperResource.RES_LABEL_UNSCRAMBLE_OUTPUT));
    tfOutput.setEditable(false);
    cbCodecs = new ComboBox(CryptoSymmetricAlgo.values(),
        localizer.getTooltip(HelperResource.RES_LABEL_UNSCRAMBLE_CODEC));
    password = new PasswordField(localizer.getTooltip(HelperResource.RES_LABEL_UNSCRAMBLE_PASSWORD));

    actionGo = new ActionGo();
    final ActionAbstract actionAbort = new ActionAbort();
View Full Code Here


    tfInput.setEditable(false);
    tfOutput = new TextField(null == scrambler.getModuleData().getFile(KEY_SCRAMBLE_OUTPUT) ? null : scrambler
        .getModuleData().getFile(KEY_SCRAMBLE_OUTPUT).getAbsolutePath(),
        localizer.getTooltip(HelperResource.RES_LABEL_SCRAMBLE_OUTPUT));
    tfOutput.setEditable(false);
    cbCodecs = new ComboBox(CryptoSymmetricAlgo.values(),
        localizer.getTooltip(HelperResource.RES_LABEL_SCRAMBLE_CODEC));
    password1 = new PasswordField(localizer.getTooltip(HelperResource.RES_LABEL_SCRAMBLE_PASSWORD));
    password2 = new PasswordField(localizer.getTooltip(HelperResource.RES_LABEL_SCRAMBLE_PASSWORD_VERIFY));

    actionGo = new ActionGo();
View Full Code Here

TOP

Related Classes of net.laubenberger.bogatyr.view.swing.ComboBox

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.