Package org.jitterbit.integration.client.ui.entity.wizard

Examples of org.jitterbit.integration.client.ui.entity.wizard.WizardNameInputField


    public void dispose() {
        wsdlSelectorPanel.dispose();
    }

    private void createComponents(WebServiceCall ws, Folder owner) {
        nameField = new WizardNameInputField(Strings.mnemonicString("Wizard.StartPage.Label.Name"), ws, owner);
        nameField.setValue(ws.getName());
        wsdlSelectorPanel = createWsdlSelector(owner);
    }
View Full Code Here


    private final Receiver<String> callback;

    public NameChangeUi(T item, Folder parent, Receiver<String> callback) {
        MnemonicString label = ApplicationResources.MNEMONIC_FACTORY.fromString(
                        "This is the &name given to this wizard by Jitterbit. You can rename it here.");
        field = new WizardNameInputField(label, item, parent);
        field.setSendInputChangeEvents(true);
        ChangeNotifier notifier = new ChangeNotifier();
        notifier.install(field.getInputComponent());
        this.callback = callback;
    }
View Full Code Here

    private final InputPanel inputPanel;

    public StartPageUi(Transformation tf, Folder owner, List<WizardType> inputTypes, List<WizardType> outputTypes) {
        inputPanel = new InputPanel(new FlowLayout(FlowLayout.LEADING, 0, 0));
        nameField = new WizardNameInputField(Strings.mnemonic("Name"), tf, owner);
        inputPanel.addInputField(nameField, nameField, nameField);
        structureTypeSelector = new InputAndOutputTypeSelector(inputPanel, tf, inputTypes, outputTypes);
        registerListeners();
        installQuickSelector(inputTypes, outputTypes);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.wizard.WizardNameInputField

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.