Package org.jmule.core.searchmanager.tree

Examples of org.jmule.core.searchmanager.tree.Node


  /**
   * Gets the search string
   * @return the search string
   */
  public String getQuery() {
    Node n = search_tree.getNode(NodeType.FILE_NAME);
    return (String)n.getKey().getValue(Tree.DATA_KEY);
   
  }
View Full Code Here


  /**
   * Sets a new search string
   * @param searchStr the new search string
   */
  public void setQuery(String searchStr) {
    Node n = search_tree.getNode(NodeType.FILE_NAME);
    n.getKey().setValue(searchStr);
  }
View Full Code Here

TOP

Related Classes of org.jmule.core.searchmanager.tree.Node

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.