Package com.google.collide.client.editor.search

Examples of com.google.collide.client.editor.search.SearchModel$SearchTaskHandler


  private void doPartialSearch() {
    getInputController().getEditor().getSearchModel().setQuery(searchTerm.toString());
  }

  private void doSearch(boolean searchNext) {
    SearchModel model = getInputController().getEditor().getSearchModel();

    if (StringUtils.isNullOrEmpty(model.getQuery())) {
      return;
    }
   
    if (searchNext) {
      model.getMatchManager().selectNextMatch();
    } else {
      model.getMatchManager().selectPreviousMatch();
    }
  }
View Full Code Here

TOP

Related Classes of com.google.collide.client.editor.search.SearchModel$SearchTaskHandler

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.