#798922 : improved javadocs

This commit is contained in:
Timo Westkämper 2011-07-01 13:02:46 +00:00
parent f60f91e3b2
commit 2be2991bc9
2 changed files with 16 additions and 0 deletions

View File

@ -103,6 +103,8 @@ public interface Projectable {
/**
* list the results for the given projection
*
* An empty list is returned for no results.
*
* @param first
* @param second
@ -114,6 +116,8 @@ public interface Projectable {
/**
* list the results for the given projection
*
* An empty list is returned for no results.
*
* @param args
* @return
@ -122,6 +126,8 @@ public interface Projectable {
/**
* list the results for the given projection
*
* An empty list is returned for no results.
*
* @param <RT>
* generic type of the List
@ -132,6 +138,8 @@ public interface Projectable {
/**
* list the distinct results for the given projection
*
* An empty list is returned for no results.
*
* @param first
* @param second
@ -143,6 +151,8 @@ public interface Projectable {
/**
* list the distinct results for the given projection
*
* An empty list is returned for no results.
*
* @param args
* @return
@ -151,6 +161,8 @@ public interface Projectable {
/**
* list the distinct results for the given projection
*
* An empty list is returned for no results.
*
* @param <RT>
* generic type of the List
@ -180,6 +192,8 @@ public interface Projectable {
/**
* return the given projection as a Map instance using key and value for Map population
*
* An empty map is returned for no results.
*
* @param <K>
* @param <V>
* @param key

View File

@ -42,6 +42,8 @@ public final class SearchResults<T> {
/**
* Get the results in List form
*
* An empty list is returned for no results.
*
* @return
*/