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

Examples of org.jitterbit.integration.client.ui.entity.selector.combo.EntityComboBoxWithControls


     *            String that will be used as the caption for the control's input field.
     */
    public EntitySelectionControl(EntityExplorerSupport explorerSupport, EntityType type, EntityFilter filter,
                    String caption) {
        actionListeners = new ActionListeners();
        controls = new EntityComboBoxWithControls(explorerSupport, type, filter, true);
        customizeComboBox();
        createInputField(caption);
        installActionListener(comboBox, null, false);
    }
View Full Code Here


     *            String that will be used as the caption for the control's input field.
     */
    public EntitySelectionControl(OperationPage page, EntityType type, EntityFilter filter, String caption,
                    boolean isCompoundEditRoot) {
        actionListeners = new ActionListeners();
        controls = new EntityComboBoxWithControls(page.getEntityExplorerSupport(), type, filter, true);
        customizeComboBox();
        createInputField(caption);
        installActionListener(comboBox, page, isCompoundEditRoot);
    }
View Full Code Here

        parent.addInputField(selectorField, validator, decorator);
        forLayout = entityBoxControls.asInputFieldForLayout(selectorField.getName(), selectorField.getLabel().getText());
    }

    private EntityComboBoxWithControls createComboBoxWithControls(EntityType type, EntityFilter filter, boolean includeNoneItem) {
        EntityComboBoxWithControls c = new EntityComboBoxWithControls(explorer, type, filter, includeNoneItem);
        c.getComboBox().setPrototypeValue("XXXXXXXXXXXXXXXXXXXXxXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
        return c;
    }
View Full Code Here

        documentSelector.dispose();
    }
   
    private EntityComboBoxWithControls createComboBox(InterchangeView view) {
        EntityExplorerSupport support = new InterchangeEntityExplorerSupport(view);
        EntityComboBoxWithControls cb = new EntityComboBoxWithControls(support, EntityType.Document, true);
        cb.getComboBox().setPrototypeValue("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
        return cb;
    }
View Full Code Here

public class ResponseTargetComboBoxSelector implements ResponseTargetSelector {

    private final EntityComboBoxWithControls combo;
   
    public ResponseTargetComboBoxSelector(EntityExplorerSupport support) {
        combo = new EntityComboBoxWithControls(support, EntityType.Target, true);
        combo.getComboBox().setPrototypeValue("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.selector.combo.EntityComboBoxWithControls

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.