Package it.unibz.instasearch.ui.ResultContentProvider

Examples of it.unibz.instasearch.ui.ResultContentProvider.MatchLine


      SearchResultDoc doc = (SearchResultDoc) element;
     
      return decorateFile(doc);
     
    } else if(element instanceof MatchLine) {
      MatchLine lineMatches = (MatchLine) element;
      return decorateLineMatches(lineMatches);
     
    } else if( element instanceof SearchQuery ) {
      // we have search query in 2 cases:
      SearchQuery query = (SearchQuery) element;
View Full Code Here


  private void openSelection() throws Exception {
    IStructuredSelection selection = (IStructuredSelection)resultViewer.getSelection();
    Object obj = selection.getFirstElement();
   
    SearchResultDoc doc = null;
    MatchLine selectedLineMatches = null;
   
    if(obj instanceof SearchResultDoc) {
      doc = (SearchResultDoc) obj;
    } else if(obj instanceof MatchLine) {
      selectedLineMatches = (MatchLine) obj;
      doc = selectedLineMatches.getResultDoc();
    } else if(obj instanceof Exception) {
      InstaSearchUI.showError((Exception)obj);
      return;
    } else if(obj instanceof SearchQuery ) {
      search( (SearchQuery) obj, true );
View Full Code Here

TOP

Related Classes of it.unibz.instasearch.ui.ResultContentProvider.MatchLine

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.