Back to project page thesearchbattle.
The source code is released under:
Apache License
If you think the Android project thesearchbattle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raycoarana.thesearchbattle.search; /*from ww w. j ava 2s .co m*/ import com.raycoarana.thesearchbattle.io.ResultsRegister; import com.raycoarana.thesearchbattle.model.Car; import java.util.List; public interface SearchEngine { void prepareSet(String currentSource, ResultsRegister resultsRegister); List<Car> search(String term); }