Package net.laubenberger.bogatyr.view.swing

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


    getContentPane().removeAll();
    // setLayout(new BorderLayout());

    setTitle(localizer.getValue(HelperResource.RES_ACTION_UNSCRAMBLE));

    tfInput = new TextField(null == scrambler.getModuleData().getFile(KEY_UNSCRAMBLE_INPUT) ? null : scrambler
        .getModuleData().getFile(KEY_UNSCRAMBLE_INPUT).getAbsolutePath(),
        localizer.getTooltip(HelperResource.RES_LABEL_UNSCRAMBLE_INPUT));
    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));
View Full Code Here


    getContentPane().removeAll();
    // setLayout(new BorderLayout());

    setTitle(localizer.getValue(HelperResource.RES_ACTION_SCRAMBLE));

    tfInput = new TextField(null == scrambler.getModuleData().getFile(KEY_SCRAMBLE_INPUT) ? null : scrambler
        .getModuleData().getFile(KEY_SCRAMBLE_INPUT).getAbsolutePath(),
        localizer.getTooltip(HelperResource.RES_LABEL_SCRAMBLE_INPUT));
    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));
View Full Code Here

TOP

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

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.