Merged DEV\EXTENSIONS to HEAD

svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4843 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4848 .
   Allow null in setAuthentication
   Patch for system registry area


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4953 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2007-01-29 13:36:01 +00:00
parent 60ba6773c5
commit 4287565b19
9 changed files with 71 additions and 48 deletions

View File

@@ -44,11 +44,15 @@ public interface ResultSet extends Iterable<ResultSetRow> // Specfic iterator ov
/**
* Get the id of the node at the given index
*
* @param n zero-based index
*/
NodeRef getNodeRef(int n);
/**
* Get the score for the node at the given position
*
* @param n zero-based index
*/
float getScore(int n);
@@ -61,6 +65,8 @@ public interface ResultSet extends Iterable<ResultSetRow> // Specfic iterator ov
/**
* Get a row from the result set by row index, starting at 0.
*
* @param i zero-based index
*/
ResultSetRow getRow(int i);
@@ -76,6 +82,8 @@ public interface ResultSet extends Iterable<ResultSetRow> // Specfic iterator ov
/**
* Get the child assoc ref for a particular row.
*
* @param n zero-based index
*/
ChildAssociationRef getChildAssocRef(int n);