Package edu.uga.galileo.voci.model

Examples of edu.uga.galileo.voci.model.SearchManager


    Logger.debug("Received query " + query + " / " + projectId);

    // strip the plugin ID and the brackets first
    query = StringUtils.undoSpecialCharReplacements(query.substring(query
        .indexOf(':') + 1, query.length() - 1));
    SearchManager sm = new SearchManager();
    List<SearchResult> results = sm.performBasicQuery(query,
        SearchType.AND, projectId, activeElementsOnly(),
        allowZeroIndexMultiplierMatches(), false, null, null, null,
        null, null);

    StringBuffer toReturn = new StringBuffer();
View Full Code Here

TOP

Related Classes of edu.uga.galileo.voci.model.SearchManager

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.