/*
* Created on Dec 12, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.enhydra.snapper.api.searching;
/**
* @author lola
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public interface SearchResult {
public String getBeginIndex();
public String getEndIndex();
public String getDocsNumber();
public String getSearchedTerm();
public String getSearchedTime();
public ResultElement[] getResultElements();
}
|