Examples of BooleanPreferenceUi


Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

   
    private final ActivityPreferences activityPrefs;
   
    public OperationPreferencesPage() {
        super(new String[] { PATH });
        showActicitySelector = new BooleanPreferenceUi(ShowActivitySelectorPreference.INSTANCE,
                        Strings.get("Prefs.ShowActivitySelector"));
        defaultOpType = new FixedSetPreferenceUi<OperationType>(DefaultOperationTypePreference.instance(),
                        Strings.get("Prefs.OpType"), false);
        schedulePolicy = new SchedulePolicyPreferenceUi();
        sourceHistory = new BooleanPreferenceUi(DefaultSourceHistorySettingPreference.INSTANCE,
                        Strings.get("Prefs.SourceHistory"));
        runOperationMessage = new BooleanPreferenceUi(RunOperationSuccessMessagePreference.INSTANCE,
                        Strings.get("Prefs.RunOperation.Message"));
        activityPrefs = new ActivityPreferences();
        addControls(showActicitySelector, defaultOpType, schedulePolicy, sourceHistory, runOperationMessage);
        bindActivityTypePreferences();
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    public static final String PATH = "Web Service Calls";
   
    public WebServiceCallPreferencesPage() {
        super(new String[] { PATH });
        addControl(new BooleanPreferenceUi(WsdlEditSideEffectsWarningPreference.INSTANCE,
                        "Show a warning if editing a WSDL file will affect other Web Service Calls in the project"));
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    public GeneralPreferencesPage() {
        super(new String[] { "General" });
        addControl(new ApplicationDirectoryPreference());
        addControl(new LogHistoryPreference());
        addControl(new BooleanPreferenceUi(ShowGettingStartedPagePreference.INSTANCE,
                        "Show getting started page on startup"));
        addControl(createServerCallTimeoutPrefUi());
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    private final PreferenceUi autoAssistSingleQuotePreference;

    public ScriptPreferencesPage() {
        super(new String[] { "Scripts" });
        layoutTypePreference = createLayoutTypePref();
        dataElementListPreference = new BooleanPreferenceUi(ShowReferencedDataElementsOnlyPreference.INSTANCE,
                        "Show only those data elements that are referenced in the project in the Formula Builder");
        dataElementCompletionPreference = new BooleanPreferenceUi(UseReferencedDataElementsOnlyInAutoCompletion.INSTANCE,
                        "Include only those data elements that are referenced in the project in auto-completion");
        autoSuggestFuncArgsPreference = AutoSuggestFunctionArgumentsPreference.createUi();
        tabSizePreference = createTabSizePrefUi();
        autoAssistParenthesisPreference = new BooleanPreferenceUi(AutoAssistParenthesisPreference.INSTANCE,
                        "Opening parenthesis");
        autoAssistDoubleQuotePreference = new BooleanPreferenceUi(AutoAssistDoubleQuotesPreference.INSTANCE,
                        "Double-quote");
        autoAssistSingleQuotePreference = new BooleanPreferenceUi(AutoAssistSingleQuotesPreference.INSTANCE,
                        "Single-quote");
        addControls(layoutTypePreference, dataElementListPreference, dataElementCompletionPreference, autoSuggestFuncArgsPreference,
                        tabSizePreference, autoAssistParenthesisPreference, autoAssistDoubleQuotePreference,
                        autoAssistSingleQuotePreference);
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    }

    private AutoSuggestFunctionArgumentsPreference() {/**/}

    public static BooleanPreferenceUi createUi() {
        return new BooleanPreferenceUi(INSTANCE, "Automatically suggest function arguments when possible");
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    public UiPreferencesPage() {
        super(new String[] { "General", "UI" });
        addControl(new LookAndFeelPreferenceUi());
        addControl(new EditorModePreferenceUi());
        addControl(createRecentlyClosedEditorsPrefUi());
        addControl(new BooleanPreferenceUi(AnimationPreference.INSTANCE, "Use animation effects in the UI"));
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

                                        + "<br>For security reasons, the passwords can be erased from the client side data when the project is deployed to a server."
                                        + "<br>The project will still work as usual, since the passwords are used only by the server.</html>");
    }

    private static PreferenceUi createField() {
        return new BooleanPreferenceUi(BlankOutPasswordsOnDeployPreference.INSTANCE,
            "Blank out passwords from the project data on the client side after deploy");
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

            createLocationDecoratedIconsPref()
        );
    }
   
    private BooleanPreferenceUi createRenamePref() {
        return new BooleanPreferenceUi(AutomaticRenamePreference.INSTANCE,
                        Strings.get("Prefs.AutomaticRename")); //$NON-NLS-1$
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

        return new BooleanPreferenceUi(AutomaticRenamePreference.INSTANCE,
                        Strings.get("Prefs.AutomaticRename")); //$NON-NLS-1$
    }
   
    private BooleanPreferenceUi createLocationDecoratedIconsPref() {
        BooleanPreferenceUi p = new BooleanPreferenceUi(LocationDecorateGraphNodeIconsPreference.INSTANCE,
                Strings.get("Prefs.LocationDecorateIcons")); //$NON-NLS-1$
        p.share(); // Displayed in the Source & Target preference page too
        return p;
    }
View Full Code Here

Examples of org.jitterbit.application.ui.prefs.BooleanPreferenceUi

    static final String PATH = "Wizards";

    public WizardPreferencesPage() {
        super(new String[] { PATH });
        addControl(new BooleanPreferenceUi(ConfirmWizardCancelledPreference.instance(),
                "Confirm before processing a cancel request"));
    }
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.