Examples of TextInputField


Examples of org.jitterbit.ui.input.TextInputField

        return new TextInputField(name, new KongaTextArea(rows, columns).disableTabs(), jlabel);
    }
   
    public static TextInputField getTextInputPane(String name, String label) {
        JLabel jlabel = (label != null && label.length() > 0) ? new JLabel(label) : null;
        return new TextInputField(name, new KongaTextPane().disableTabs(), jlabel);
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

    }

    private static TextInputField getInputField(FieldValue value, String label, int length, boolean isEditable) {
        JLabel jlabel = new JLabel(label);
        String text = value.getValue();
        TextInputField field = new TextInputField(label, new KongaTextField(text, length), jlabel);
        field.setEditable(isEditable);
        field.getInputComponent().setToolTipText(label + ": " + text);
        return field;
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

        };
        return getInputField(value, Strings.get("ProjectPage.Label.Modified"), 20, false);
    }

    private TextInputField createDescriptionField(IntegrationProject proj) {
        TextInputField f = InputFieldFactory.getDescriptionField();
        f.setValue(proj.getDescription());
        f.getInputComponent().setCaretPosition(0);
        return f;
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

        return f;
    }

    private TextInputField createCommentField(IntegrationProject project) {
        String name = Strings.format("ProjectPage.Label.JitterPackComment", JitterPackConstants.SINGULAR);
        TextInputField f = InputFieldFactory.getTextInputArea(name, name, 8, 40);
        f.setValue(project.getJitterPackComment());
        f.getInputComponent().setCaretPosition(0);
        return f;
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

        parent.addInputField(input);
        return input;
    }
   
    private TextInputField createTypeField(InputPanel parent) {
        TextInputField field = new TextInputField(getString("Http.ContentType.Name"), new KongaTextField(20),
                        KongaLabel.withMnemonic(getString("Http.ContentType.Label")));
        parent.addInputField(field);
        return field;
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

    public void reset(JmsLocation loc) {
        textArea.setValue(loc.getMessageSelector());
    }

    private TextInputField createTextArea(InputPanel parent) {
        TextInputField f = InputFieldFactory.getTextInputArea("Message Selector", "", 5, 60); //$NON-NLS-1$ //$NON-NLS-2$
        parent.addInputField(f);
        return f;
    }
View Full Code Here

Examples of org.jitterbit.ui.input.TextInputField

    private TextInputField createTextInputField() {
        JTextField base = createTextField();
        FileDropSupport.install(base, FileDropStrategy.SET_FULL_PATH);
        base.addActionListener(new TextActionSender());
        installToolTip(base);
        TextInputField textField = new TextInputField("Filename", base);
        textField.setChangeEventDelay(200);
        panel.addInputField(textField);
        installAutoCompletion(new CompletionFileFilter(getFileFilter(), getSelectionMode()), textField);
        return textField;
    }
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.