panda.idx.IResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.idx;
import java.util.List;
public class IResult {
private long totalHits;
private List documents;
/**
* @return the totalHits
*/
public long getTotalHits() {
return totalHits;
}
/**
* @param totalHits the totalHits to set
*/
public void setTotalHits(long totalHits) {
this.totalHits = totalHits;
}
/**
* @return the documents
*/
public List getDocuments() {
return documents;
}
/**
* @param documents the documents to set
*/
public void setDocuments(List documents) {
this.documents = documents;
}
}