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

Examples of org.jitterbit.integration.client.ui.entity.IntegrationEntityNameInputField


     */
    public static TextInputField2 getIntegrationEntityNameInputField(
                    IntegrationEntity entity, String sName, JLabel jLabel, int length) {
        JTextComponent comp = InputFieldFactory.getTextField(length, true);
        comp.setText(entity.getName());
        IntegrationEntityNameInputField field = new IntegrationEntityNameInputField(entity, sName, comp, jLabel);
        return field;
    }
View Full Code Here


            selector.setText(getString("Move.Choice.Rename"));
        }

        private IntegrationEntityNameInputField createNewNameField() {
            JLabel newNameLabel = TextStyles.CaptionText.makeLabel(getString("Move.NewName") + ":");
            IntegrationEntityNameInputField field = new IntegrationEntityNameInputField(itemToMove,
                            getString("Move.NewName"), InputFieldFactory.getTextField(30, true), newNameLabel);
            field.setSelectAllWhenFocused(true);
            field.setValue(getNewNameSuggestion());
            field.setNameValidator(new NameValidatorImpl());
            field.setSendInputChangeEvents(true);
            return field;
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.IntegrationEntityNameInputField

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.