Subversion Repositories bacoAlunos

Rev

Rev 163 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
90 jmachado 1
package pt.estgp.estgweb.services.common;
2
 
163 jmachado 3
import pt.estgp.estgweb.domain.DomainObject;
4
 
90 jmachado 5
import java.util.List;
6
 
7
/**
8
 * @author Jorge Machado
9
 * @date 24/Abr/2008
10
 * @time 14:56:54
11
 * @see pt.estgp.estgweb.services.common
12
 */
13
public interface ICommonSearchResults
14
{
15
    public List<ISearchResults> getSearchResults();
16
    public int getTotalResults();
104 jmachado 17
    public 1.5.0/docs/api/java/lang/String.html">String getQuery();
18
    public 1.5.0/docs/api/java/lang/String.html">String getSearchType();
163 jmachado 19
    /*This method is to be called in new Object creation*/
90 jmachado 20
}