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

@@ -49,14 +49,15 @@ public interface ResultSetRow
*
* @return Returns all the available node properties
*/
public Map<String, Serializable> getValues();
public Map<Path, Serializable> getValues();
/**
* Get the data for a single column
* @param columnName
* @return the value
* Get a node property by path
*
* @param path the path to the value required
* @return Returns the value of the property at the given path
*/
public Serializable getValue(String columnName);
public Serializable getValue(Path path);
/**
* Get a node property value by name
@@ -73,21 +74,6 @@ public interface ResultSetRow
*/
public NodeRef getNodeRef();
/**
* Gets the node refs
* @return a map of selector name to node ref
*/
public Map<String, NodeRef> getNodeRefs();
/**
* Gets the node ref related to the named selector
* @param selectorName
* @return the node ref
*/
public NodeRef getNodeRef(String selectorName);
/**
* Get the score for this row in the result set
*
@@ -96,20 +82,6 @@ public interface ResultSetRow
public float getScore(); // Score is score + rank + potentially other
// stuff
/**
* Get the scores .
* @return a map of selector name to score.
*/
public Map<String, Float> getScores();
/**
* Get the score related to the named selector.
* @param selectorName
* @return - the score.
*/
public float getScore(String selectorName);
/**
* Get the containing result set
*
@@ -124,9 +96,9 @@ public interface ResultSetRow
public QName getQName();
/**
* Get the index of this result set in the result set
* If you want the overall position in paged reults you have to add the skipCount fo the result set.
* @return
* Get the position of this row in the containing set.
*
* @return Returns the position of this row in the containing resultset
*/
public int getIndex();