Package com.google.soap.search

Examples of com.google.soap.search.GoogleSearchResult


  }

  // Occurs within the EDT
  protected void finished() {
    if(getException() == null){
      GoogleSearchResult result = (GoogleSearchResult)getFinishedResult();
      Application.instance().getApplicationContext().publishEvent(
          new SearchResultEvent(this, result));
    }
    else{
      InvocationTargetException error = getException();
View Full Code Here


   * but I check to make sure.
   */
  public void onApplicationEvent(ApplicationEvent event) {
    if(event instanceof SearchResultEvent){
      SearchResultEvent searchResultEvent = (SearchResultEvent)event;
      final GoogleSearchResult results = searchResultEvent.getSearchResult();
      if(SwingUtilities.isEventDispatchThread()){
        updateTreeModel(results);
      }
      else{
        SwingUtilities.invokeLater(new Runnable(){
View Full Code Here

TOP

Related Classes of com.google.soap.search.GoogleSearchResult

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.