Package com.google.gdata.client.codesearch

Examples of com.google.gdata.client.codesearch.CodeSearchService


  private CodeSearchService codesearchService;
  private URL privateFeedUrl;

  public CodeSearchClient(String query,  String nresults, String start)
      throws Exception {
    codesearchService = new CodeSearchService("gdata-sample-codesearch");
    privateFeedUrl = new URL(CODESEARCH_FEEDS_URL + "q=" + query
                             + "&start-index=" + start +
                             "&max-results="+ nresults);
  }
View Full Code Here

TOP

Related Classes of com.google.gdata.client.codesearch.CodeSearchService

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.