Package ui.tabs.search

Examples of ui.tabs.search.SearchSubTab


  }

  public void feed(String text)
  {
    SearchSubTab subTab = new SearchSubTab(text);

    SearchRequest request;
    try
    {
      request = new SearchRequest(text, subTab);
    }
    catch (IllegalArgumentException e)
    {
      return;
    }
    subTab.setRequest(request);

    try
    {
      getSearchManager().addRequest(request);
    }
    catch (IllegalStateException e)
    {
      MessageBox.showInformation("You are not connected to a server.",
          "Not connected");
      return;
    }

    subTab.addToPane(subPane);
    subPane.setSelectedComponent(subTab);
  }
View Full Code Here

TOP

Related Classes of ui.tabs.search.SearchSubTab

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.