Back to project page Team7-301Project.
The source code is released under:
Apache License
If you think the Android project Team7-301Project 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 ca.ualberta.cs.f14t07_application; //from w w w. ja va2s. c om import java.util.List; import ca.ualberta.cs.remote_server.SearchHit; /** * Interprets the individual search hits so that they can * be turned into ForumEntries * * taken from Lab 7 * * * @author lexie*/ public class Hits<T> { private int total; private float max_score; private List<SearchHit<T>> hits; public Hits() {} public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public float getMax_score() { return max_score; } public void setMax_score(float max_score) { this.max_score = max_score; } public List<SearchHit<T>> getHits() { return hits; } public void setHits(List<SearchHit<T>> hits) { this.hits = hits; } @Override public String toString() { return "Hits [total=" + total + ", max_score=" + max_score + ", hits=" + hits + "]"; } }