Reversed out revisions 14366, 14361 and 14356

- Just prior to this, created dev branch DEV/ANDY_HEAD_ROLLBACKS
 - Andy: Switch to this branch on your local copy if you have changes to any of the files modified here


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14374 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-05-20 10:32:23 +00:00
parent 05a58901fd
commit 24b8ae3b16
53 changed files with 3858 additions and 5664 deletions

View File

@@ -30,12 +30,13 @@ package org.alfresco.cmis;
* A CMIS result set
*
* @author andyh
*
*/
public interface CMISResultSet extends Iterable<CMISResultSetRow>
{
/**
* Get the result set meta-data.
* @return the metadata
* @return
*/
public CMISResultSetMetaData getMetaData();
@@ -43,7 +44,7 @@ public interface CMISResultSet extends Iterable<CMISResultSetRow>
* Get the start point for this results set in the overall
* set of rows that match the query - this will be equal to the skip count
* set when executing the query.
* @return the start position
* @return
*/
public int getStart();
@@ -56,7 +57,7 @@ public interface CMISResultSet extends Iterable<CMISResultSetRow>
* If a skip count is given, the length represents the number of results
* after the skip count and does not include the items skipped.
*
* @return the length
* @return
*/
public int getLength();
@@ -69,7 +70,7 @@ public interface CMISResultSet extends Iterable<CMISResultSetRow>
/**
* Was this result set curtailed - are there more pages to the result set?
* @return true if there are more results
* @return
*/
public boolean hasMore();
@@ -77,7 +78,7 @@ public interface CMISResultSet extends Iterable<CMISResultSetRow>
/**
* Get the given row
* @param i -the position in this result set - start + i gives the position in the overall result set
* @return the row
* @return
*/
public CMISResultSetRow getRow(int i);