Package com.ourlinc.omni.search

Examples of com.ourlinc.omni.search.Searcher


    return m_StorageManager.getStorage(name.toLowerCase());
  }

  // 取得搜索器
  public Searcher getSearcher(String name) {
    Searcher p = m_Searchrs.get(name);
    if (null != p)
      return p;

    throw new NotFindException("没能找到名为'" + name + "'的查询器");
  }
View Full Code Here


   * @param name
   *            查询器名
   * @return 查询器
   */
  synchronized public Searcher newSearcher(String name) {
    Searcher check = m_Searchrs.get(name);
    if (null != check) {
      // throw new TransactionException("已有同名的查询器:" + check);
      if (Misc.DebugEnabled) {
        Misc.getLogger().debug("已有同名的查询器:" + check, new Throwable());
      }
View Full Code Here

    return m_StorageManager.getStorage(name.toLowerCase());
  }

  // 取得搜索器
  public Searcher getSearcher(String name) {
    Searcher p = m_Searchrs.get(name);
    if (null != p)
      return p;

    throw new NotFindException("没能找到名为'" + name + "'的查询器");
  }
View Full Code Here

   * @param name
   *            查询器名
   * @return 查询器
   */
  synchronized public Searcher newSearcher(String name) {
    Searcher check = m_Searchrs.get(name);
    if (null != check) {
      // throw new TransactionException("已有同名的查询器:" + check);
      if (Misc.DebugEnabled) {
        Misc.getLogger().debug("已有同名的查询器:" + check, new Throwable());
      }
View Full Code Here

TOP

Related Classes of com.ourlinc.omni.search.Searcher

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.