All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.idx.IResult Maven / Gradle / Ivy

Go to download

Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.

There is a newer version: 1.8.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy