Package org.jitterbit.ui.input

Examples of org.jitterbit.ui.input.InputPanel


        private final RadioButtonGroupPanel<RouteType> buttons;

        private final UiProvider layout;

        public Ui(Operation from, IntegrationEntity to) {
            panel = new InputPanel();
            buttons = createButtons();
            layout = createLayout(from, to);
        }
View Full Code Here


        boolean valid = inputPanel.isInputValid() && wsdlSelectorPanel.inputIsValid();
        startPage.setCanContinue(valid);
    }

    private void createInputPanel() {
        inputPanel = new InputPanel();
        inputPanel.addInputField(nameField, nameField, nameField);
    }
View Full Code Here

        text.setTextWhenEmpty("Enter an optional comment for this Jitterpak");
        return new TextInputField(name, text, name);
    }

    private InputPanel createInputPanel() {
        InputPanel p = new InputPanel(new FlowLayout(FlowLayout.LEADING, 0, 0));
        p.addInputPanel(destinationPanel);
        p.addInputField(commentArea);
        return p;
    }
View Full Code Here

            panel.apply();
        }
    }

    private KongaDialog createDialog(Window parent) {
        InputPanel inputPanel = panel.getInputPanel();
        JComponent content = createDialogContents();
        WizardStyleDialog dialog = new WizardStyleDialog(parent, "Configure Operation", content);
        InputPanelDialogMediator.bind(inputPanel, dialog);
        dialog.addOkCondition(new Supplier<Boolean>() {
View Full Code Here

    private final SchedulePanel schedulePanel;

    public ExpandedOptionsPanel(OperationGraphController controller, OperationWrapperNode opNode) {
        this.controller = controller;
        this.opNode = opNode;
        panel = new InputPanel();
        OperationWrapper op = opNode.getDataObject();
        nameField = createNameField(op);
        typeSelector = createTypeSelector(op);
        optionsPanel = createOptionsPanel(op);
        onSuccessPanel = createSuccessPanel(controller.getExplorerSupport(), op);
View Full Code Here

    /**
     * Creates a new <code>TimeWindowControl</code> from given initial values
     * for the start and end timestamps.
     */
    public TimeWindowControl(Date startDate, Date endDate) {
        inputPanel = new InputPanel();
        startField = createDateField(PackageResources.TimeWindowControl.LABEL_START, startDate);
        endField = createDateField(PackageResources.TimeWindowControl.LABEL_END, endDate);
        startButton = createDateButton();
        endButton = createDateButton();
        todayButton = new JButton("From Today");
View Full Code Here

        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

    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

    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

    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

TOP

Related Classes of org.jitterbit.ui.input.InputPanel

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.