Examples of MaxHistoryEntriesToFetchPreference


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

     * Creates a new <tt>OperationHistoryFilters</tt> instance. The new instance will only allow 100
     * entries to pass, and all other subfilters will be initially inactive.
     *
     */
    public OperationHistoryFilters() {
        super(PackageResources.OperationFilter.TITLE, new MaxHistoryEntriesToFetchPreference().get());
        transferSizeFilter = new TransferSizeFilterUi<OperationLogEntry>(
                        PackageResources.OperationFilter.TRANSFER_SIZE);
        timeWindowFilter = new TimeWindowFilterUi<OperationLogEntry>();
        addFilter(transferSizeFilter);
        addFilter(timeWindowFilter);
View Full Code Here

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

     * Creates a new <tt>SourceHistoryFilters</tt> instance. The new instance will only allow 100
     * entries to pass, and all other subfilters will be initially inactive.
     *
     */
    public SourceHistoryFilters() {
        super(PackageResources.SourceFilter.TITLE, new MaxHistoryEntriesToFetchPreference().get());
        timeWindowFilter = new TimeWindowFilterUi<SourceHistoryEntry>();
        fileSizeFilter = new TransferSizeFilterUi<SourceHistoryEntry>(PackageResources.SourceFilter.FILE_SIZE);
        addFilter(timeWindowFilter);
        addFilter(fileSizeFilter);
    }
View Full Code Here

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

        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
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.