Added support for result set meta data

Added size limits for result sets
Updated/improved comments

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2573 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2006-03-23 15:14:22 +00:00
parent 75ce410028
commit 57e7a4f77e
16 changed files with 705 additions and 30 deletions

View File

@@ -32,27 +32,53 @@ public class SearchStatement
super();
}
/**
* A constructor that takes both arguments.
*
* @param language
* @param query
*/
SearchStatement(String language, String query)
{
this.language = language;
this.query = query;
}
/**
* Get the query language.
*
* @return
*/
public String getLanguage()
{
return language;
}
/**
* Get the query.
*
* @return
*/
public String getQuery()
{
return query;
}
/**
* Set the query language.
*
* @param language - the query language.
*/
public void setLanguage(String language)
{
this.language = language;
}
/**
* Set the query string.
*
* @param query - the query string.
*/
public void setQuery(String query)
{
this.query = query;