
panda.idx.IResult Maven / Gradle / Ivy
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy