// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class SearchYahoo extends SearchService {
  public void init() {
    baseURL = "http://search.yahoo.com/bin/search?p=";
    serviceName = "Yahoo";
    setup();
  }
}

