Examples of InputPanel


Examples of org.jitterbit.ui.input.InputPanel

        Collections.sort(timeZones);
        return new DefaultComboBoxModel(timeZones.toArray());
    }

    private void layoutComponents() {
        InputPanel controls = new InputPanel();
        InputField[] fields = { timeZones, getDateTimeDisplayerAsInputField() };
        InputFieldLayoutUtils.layoutOneColumn(controls, fields, false, false);
        BorderLayoutBuilder.from(getUi(), 0, 5).north(caption).center(controls.getUi());
        UiUtils.setOpaqueRecursively(getUi(), false);
    }
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    private InputPanelUndoRedoEnabler undoRedo;

    public GroupDetailsViewer(UserConsoleModel model) {
        this.model = model;
        model.addModelListener(modelListener = new ModelListener());
        inputPanel = new InputPanel();
        nameField = new NameField();
        nameField.setEnabled(false);
        nameField.setSelectAllWhenFocused(true);
        inputPanel.addInputField(nameField, nameField, nameField);
        descriptionAction = new DescriptionAction();
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    private final InputAndOutputTypeSelector structureTypeSelector;

    private final InputPanel inputPanel;

    public StartPageUi(Transformation tf, Folder owner, List<WizardType> inputTypes, List<WizardType> outputTypes) {
        inputPanel = new InputPanel(new FlowLayout(FlowLayout.LEADING, 0, 0));
        nameField = new WizardNameInputField(Strings.mnemonic("Name"), tf, owner);
        inputPanel.addInputField(nameField, nameField, nameField);
        structureTypeSelector = new InputAndOutputTypeSelector(inputPanel, tf, inputTypes, outputTypes);
        registerListeners();
        installQuickSelector(inputTypes, outputTypes);
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    public static void main(String[] args) {
        new PortDefinerTest().run();
    }

    public void run() {
        InputPanel panel = new InputPanel();
        PortDefiner definer = new PortDefiner(panel);
        DatabaseLocationPanelLayout layout = new DatabaseLocationPanelLayout();
        definer.addToLayout(layout);
        layout.addToParent(panel);
        QuickFrame.show(panel.getUi(), getClass().getSimpleName());
    }
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

        super(id, wizard, title);
        checkNotNull(type, "type");
        this.requireSelection = requireSelection;
        editorPanelService = new EditorPanelService(support, new EditorPanel());
        this.support = editorPanelService.getProjectExplorer();
        inputPanel = new InputPanel();
        selectionWidget = createSelectionWidget(type, entityClass, filter);
        registerListeners();
        installUndoRedo();
        updateCanContinueState();
    }
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

     * @param width
     *            the preferred width of this panel, expressed as the number of columns in a text
     *            field that spans across the panel.
     */
    public FileLocationPanel(FileLocation loc, SourceTarget st, boolean loginRequired, InputPanel parent, int width) {
        inputPanel = new InputPanel();
        sourceTarget = st;
        filterOptionsEditor = createFilterOptionsEditor(loc);
        createComponents(loginRequired, width);
        populateFields(loc);
        addInputComponents();
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    private InputPanelUndoRedoEnabler undoRedo;

    public UserDetailsViewer(UserConsoleModel model) {
        this.model = model;
        inputPanel = new InputPanel();
        fields = Maps.newLinkedHashMap();
        groupList = new MemberOfGroupsList(4);
        groupList.setDropEnabled(true);
        passwordAction = new PasswordAction();
        addToGroupAction = new AddToGroupAction();
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

        every_X_days_panel = new Every_X_Panel("Days", getString("Label.Every"), getString("Label.Days"),
                ScheduleOccurrence.EVERY_X_DAYS_MIN, ScheduleOccurrence.EVERY_X_DAYS_MAX);
    }

    private void createDailyPanel() {
        dailyPanel = new InputPanel();
        dailyPanel.setOpaque(false);
    }
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    private IntegrationEntityLookup operationLookup;

    public ResponsePanel(ResponseModel model, InputPanel parent) {
        this.model = model;
        panel = new InputPanel();
        ButtonGroup choices = new ButtonGroup();
        ItemListener radioButtonListener = new RadioButtonListener();
        noResponseSelector = createSelector("No Response", choices, radioButtonListener);
        operationSelector = createSelector("Use final target as response", choices, radioButtonListener);
        responseGeneratorLabel = new JLabel();
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanel

    private final InputPanel panel;

    private final TextInputField2 requestVariableField;

    public RequestPanel(HttpEndpoint endpoint, InputPanel parent) {
        panel = new InputPanel();
        requestVariableField = createVariableField();
        panel.setSendInputChangeEvents(true);
        panel.setSendUndoEvents(true);
        reset(endpoint);
        if (parent != null) {
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.