Package com.jbidwatcher.search

Examples of com.jbidwatcher.search.Searcher.execute()


    return hDoc.extractMicroformat();
  }

  private void testSearching() {
    Searcher sm = SearchManager.getInstance().addSearch("Title", "zarf", "zarf", "ebay", -1, 12345678);
    sm.execute();
  }

  private void testDateFormatting() {
    try {
      String siteDateFormat = "dd.MM.yy HH:mm:ss z";
View Full Code Here


      newType.setSelectedIndex(0);
      searchString.setText("");

      if(act.equals("Search")) {
        if(JConfig.debugging) System.out.println("Doing a " + newType.getSelectedItem() + " for " + text);
        s.execute();
      }
    }
  }
}
View Full Code Here

    if(inComponent instanceof JTable) {
      JTable thisTable = (JTable) inComponent;
      int rowPoint = thisTable.rowAtPoint(new Point(e.getX(), e.getY()));
      Searcher whichSearch = (Searcher) thisTable.getValueAt(rowPoint, -1);

      whichSearch.execute();
    }
  }

  public void actionPerformed(ActionEvent ae) {
    String actionString = ae.getActionCommand();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.