Package org.rssowl.ui.internal

Examples of org.rssowl.ui.internal.CacheService


  List<ITask> getSavedSearchServiceTestTasks(final List<Exception> ex) {
    List<ITask> tasks = new ArrayList<ITask>();

    /* Create Services */
    final CacheService cacheService = new CacheService();

    /* Create Saved Searches */
    createSavedSearches();

    /* Save some Feeds first */
    saveFeedsHelper();

    final SavedSearchService smService = new SavedSearchService();

    tasks.add(new TaskAdapter() {
      public IStatus run(IProgressMonitor monitor) {
        try {
          smService.updateSavedSearches(cacheService.getSearchMarks());
          smService.stopService();
        } catch (Exception e) {
          ex.add(e);
        }
        return Status.OK_STATUS;
View Full Code Here

TOP

Related Classes of org.rssowl.ui.internal.CacheService

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.