Package org.rssowl.core.persist.event

Examples of org.rssowl.core.persist.event.SearchFilterEvent


   * org.rssowl.core.internal.persist.dao.AbstractEntityDAO#createSaveEventTemplate
   * (org.rssowl.core.persist.IEntity)
   */
  @Override
  protected SearchFilterEvent createSaveEventTemplate(ISearchFilter entity) {
    return new SearchFilterEvent(entity, true);
  }
View Full Code Here


      ISearch search = (ISearch) entity;
      modelEvent = new SearchEvent(search, root);
    }
    else if (entity instanceof ISearchFilter) {
      ISearchFilter filter = (ISearchFilter) entity;
      modelEvent = new SearchFilterEvent(filter, root);
    }
    return modelEvent;
  }
View Full Code Here

    } else if (entity instanceof ISearch) {
      ISearch search = (ISearch) entity;
      modelEvent = new SearchEvent(search, root);
    } else if (entity instanceof ISearchFilter) {
      ISearchFilter filter = (ISearchFilter) entity;
      modelEvent = new SearchFilterEvent(filter, root);
    }

    return modelEvent;
  }
View Full Code Here

   * org.rssowl.core.internal.persist.dao.AbstractEntityDAO#createSaveEventTemplate
   * (org.rssowl.core.persist.IEntity)
   */
  @Override
  protected SearchFilterEvent createSaveEventTemplate(ISearchFilter entity) {
    return new SearchFilterEvent(entity, true);
  }
View Full Code Here

TOP

Related Classes of org.rssowl.core.persist.event.SearchFilterEvent

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.