Package org.jitterbit.ui.util.file

Examples of org.jitterbit.ui.util.file.PreferencesFileStore


    private final RecentFileStore recentFiles;

    public MappingImporterExporterImpl(InterchangeView view) {
        this.view = view;
        PreferencesKey prefKey = new PreferencesKey(getClass(), PREFERENCE_KEY);
        this.recentFiles = new PreferencesFileStore(prefKey, 1);
    }
View Full Code Here


        return panel;
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(XmlStructureWizard.class, LATEST_LOCAL_FILE);
        RecentFileStore recentFiles = new PreferencesFileStore(prefKey, 10);
        return recentFiles;
    }
View Full Code Here

        rootSelector.decorateTitle(titleDecorator);
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(ImportJitterPackUi.class, "SearchDirectory");
        return new PreferencesFileStore(prefKey, 10);
    }
View Full Code Here

        return selector;
    }

    private static RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(ExportJitterPackUi.class, "SelectedFile");
        return new PreferencesFileStore(prefKey, 1);
    }
View Full Code Here

        return p;
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(LocalWsdlFileSelector.class, LATEST_LOCAL_WSDL);
        return new PreferencesFileStore(prefKey, 10);
    }
View Full Code Here

    private final RecentFileStore delegate;

    public TestCenterFileStore() {
        PreferencesKey prefKey = new PreferencesKey(TestCenterFileStore.class, "LastSourceFile");
        delegate = new PreferencesFileStore(prefKey, 1);
    }
View Full Code Here

                        PackageResources.FileTemplateWizard.FILE_SELECTOR, getRecentFileStore());
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(SimpleStructureFileTemplateWizard.class, "File");
        return new PreferencesFileStore(prefKey, 10);
    }
View Full Code Here

        return panel;
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(XmlSampleRootSelector.class, LATEST_SAMPLE_FILE);
        RecentFileStore recentFiles = new PreferencesFileStore(prefKey, 10);
        return recentFiles;
    }
View Full Code Here

        return panel;
    }

    private RecentFileStore getRecentFileStore() {
        PreferencesKey prefKey = new PreferencesKey(ExportJitterPackUi.class, "SelectedFile");
        return new PreferencesFileStore(prefKey, 10);
    }
View Full Code Here

        return panel;
    }

    private RecentFileStore getRecentFileStore(FileType fileType) {
        PreferencesKey prefKey = new PreferencesKey(getClass(), LATEST_SAMPLE_FILE + "." + fileType.name());
        RecentFileStore recentFiles = new PreferencesFileStore(prefKey, 10);
        return recentFiles;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.util.file.PreferencesFileStore

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.