Examples of KongaTextField


Examples of org.jitterbit.ui.widget.text.KongaTextField

    public TableStringEditor() {
        super(createField());
    }

    private static KongaTextField createField() {
        KongaTextField field = new KongaTextField();
        field.setBorder(new BorderBuilder().line(Color.BLACK).empty(0, 2, 0, 2));
        return field;
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

    public TableIntegerEditor() {
        configureField();
    }

    private void configureField() {
        KongaTextField field = getComponent();
        field.setSelectAllWhenFocused(true);
        field.setHorizontalAlignment(JTextField.RIGHT);
        field.setDocument(new IntegerDocument());
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        return (frameHolder[0] != null) ? frameHolder[0].directory : null;
    }
   
    private void createComponents() {
        caption = TextStyles.LargeInfoText.makeLabel(PackageResources.LocationFrame.CAPTION);
        textField = new KongaTextField(DefaultLocation.LOCATION.getAbsolutePath(), 35);
        browseButton = new KongaButton(new BrowseAction());
        buttonPanel = new Buttons();
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

    private static JLabel getCaption(String text) {
        return new JLabel(text + ":");
    }

    private JTextField getPathField() {
        KongaTextField field = new KongaTextField(mapping.getTargetPath().toString());
        field.setEditable(false);
        return field;
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        int rightWidth = 20;
        String url = Strings.get("Page.Label.Url");
        webServiceUrlField = InputFieldFactory.getNonEmptyTextInputField(url, url, leftWidth);
        wsdlUrlField = getNonEditableField(leftWidth);
        String soap = Strings.get("Page.Label.SoapAction");
        soapActionField = new TextInputField(soap, new KongaTextField(leftWidth), new JLabel(soap));
        serviceField = getNonEditableField(rightWidth);
        portField = getNonEditableField(rightWidth);
        bindingField = getNonEditableField(rightWidth);
        operationField = getNonEditableField(rightWidth);
        editWsdlButton = new JButton("Upload New WSDL...");
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        bindingField.setText(wsCall.getProperty(WebServiceCall.BINDING));
        operationField.setText(wsCall.getProperty(WebServiceCall.OPERATION));
    }

    private static JTextField getNonEditableField(int length) {
        JTextField f = new KongaTextField(length);
        f.setEditable(false);
        f.setToolTipText(Strings.get("Page.Non-Editable"));
        return f;
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        this(null);
    }

    public WebServiceCallSecurityPanel(WebServiceCall wsCall) {
        super();
        userNameField = new KongaTextField(20);
        passwordButton = createPasswordButton();
        layoutComponents();
        if (wsCall != null) {
            setValues(wsCall);
        }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

    private final KongaTextField field;

    public FilterField(SelectorTable<CROM> table) {
        this.table = table;
        field = new KongaTextField(20);
        ActionKeyBinding.install(new ArrowDown(), field);
        listenToField();
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        updateUrl();
        listenToChanges();
    }

    private KongaTextField createServerField() {
        KongaTextField serverField = createField("&Server:", 20);
        InsertLocalHostAction localHost = new InsertLocalHostAction();
        serverField.addActionToContextMenu(localHost);
        ActionKeyBinding.install(localHost, serverField);
        ActionKeyBinding.install(new UseDebugServerAction(), serverField);
        return serverField;
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.text.KongaTextField

        ActionKeyBinding.install(new UseDebugServerAction(), serverField);
        return serverField;
    }

    private static KongaTextField createField(String label, int width) {
        KongaTextField f = new KongaTextField(width);
        f.setLabel(label);
        f.setSelectAllWhenFocused(true);
        return f;
    }
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.