Package org.jitterbit.integration.activity.ui

Examples of org.jitterbit.integration.activity.ui.MaxLogEntriesToFetchPreference


       
        private final IntPreferenceUi[] prefs;
       
        public ActivityPreferences() {
            prefs = new IntPreferenceUi[] {
                    createEntryUi(new MaxLogEntriesToFetchPreference(), Strings.get("Prefs.Activity.MaxLog")),
                    createEntryUi(new MaxHistoryEntriesToFetchPreference(), Strings.get("Prefs.Activity.MaxHistory")),
                    createEntryUi(new MaxQueueEntriesToFetchPreference(), Strings.get("Prefs.Activity.MaxQueue"))
            };
            addControls(prefs);
        }
View Full Code Here


    /**
     * Creates a new <code>LogFilters</code> instance. The new instance will only allow 100 entries
     * to pass, and all other subfilters will be initially inactive.
     */
    public LogFilters() {
        super(PackageResources.FILTER_TITLE, new MaxLogEntriesToFetchPreference().get());
        statusFilter = new LogStatusFilterUi();
        addFilter(statusFilter);
        timeWindowFilter = new TimeWindowFilterUi<OperationLogEntry>("Time Filter");
        timeWindowFilter.setFieldLabels("Status changed after", "Status changed before");
        addFilter(timeWindowFilter);
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.activity.ui.MaxLogEntriesToFetchPreference

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.