Examples of KongaTextField


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

        f.setSelectAllWhenFocused(true);
        return f;
    }

    private KongaTextField createPortField() {
        KongaTextField portField = createField("&Port:", 6);
        portField.setDocument(new IntegerDocument()); // TODO: Restrict range.
        portField.setText("46908"); // TODO: Get configured port.
        return portField;
    }
View Full Code Here

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

        portField.setText("46908"); // TODO: Get configured port.
        return portField;
    }

    private KongaTextField createUrlField() {
        KongaTextField urlField = createField("&URL:", 50);
        urlField.setEditable(false);
        urlField.setFont(urlField.getFont().deriveFont(Font.BOLD));
        urlField.setBackground(Color.WHITE);
        urlField.setForeground(new Color(32, 32, 32));
        return urlField;
    }
View Full Code Here

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

            caption.setToolTipText(text);
        }

        private TextInputField createField() {
            JLabel label = new KongaLabel(ApplicationResources.MNEMONIC_FACTORY.fromString("&Schema Location: "));
            return new TextInputField("schemaLocation", new KongaTextField(40), label);
        }
View Full Code Here

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

    private OperationNameFilter filter;
   
    private String value;
   
    public OperationNameFilterUi() {
        inputField = new KongaTextField(20);
        value = "";
    }
View Full Code Here

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

    private final StringMatcher matcher;

    public BrowserFilterField(GlobalDataElementsBrowser browser, StringMatcher matcher, String description) {
        this.browser = browser;
        this.matcher = matcher;
        field = new KongaTextField(20);
        field.setToolTipText(description);
        ActionKeyBinding.install(new ArrowDown(), field);
        listenToField();
    }
View Full Code Here

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

        box.setToolTipText(Strings.get("Import.NewGuids.ToolTip"));
        return box;
    }

    private KongaTextField createNewProjectNameField() {
        KongaTextField field = new KongaTextField(20);
        field.setToolTipText(Strings.get("Import.NewName.ToolTip"));
        return field;
    }
View Full Code Here

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

    private void addStartupTime(TwoColumnPanel parent) {
        JLabel label = new JLabel(PackageResources.SessionDetails.STARTUP);
        Date timestamp = Application.getStartupTime();
        String value = DateFormat.getDateTimeInstance().format(timestamp);
        KongaTextField field = createValueField(value);
        parent.addRow(label, field);
    }
View Full Code Here

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

    }

    private void addApplicationDirectory(TwoColumnPanel parent) {
        JLabel label = new JLabel(PackageResources.SessionDetails.APPDIR);
        File dir = Application.getApplicationDirectory().getLocation();
        KongaTextField field = createValueField(dir.getAbsolutePath());
        parent.addRow(label, field);
    }
View Full Code Here

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

        KongaTextField field = createValueField(dir.getAbsolutePath());
        parent.addRow(label, field);
    }

    private static KongaTextField createValueField(String value) {
        KongaTextField field = new KongaTextField(value);
        field.setEditable(false);
        field.setBackground(Color.WHITE);
        return field;
    }
View Full Code Here

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

    private final JLabel basePathLabel;
   
    private final KongaTextField field;
   
    public BaseNameField(String basePath) {
        field = new KongaTextField();
        field.setSelectAllWhenFocused(true);
        basePathLabel = new JLabel(getSafeBasePath(basePath));
        basePathLabel.setToolTipText(PackageResources.SearchParamsDefiner.BASE_PATH_TOOLTIP);
    }
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.