add a couple javadoc links

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@808029 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2009-08-26 14:39:35 +00:00
parent 08cca9dd1a
commit 7d27ecc331
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import java.util.List;
import java.util.Map;
/**
* A FieldSelector based on a Map of field names to FieldSelectorResults
* A {@link FieldSelector} based on a Map of field names to {@link FieldSelectorResult}s
*
*/
public class MapFieldSelector implements FieldSelector {
@ -30,7 +30,7 @@ public class MapFieldSelector implements FieldSelector {
Map fieldSelections;
/** Create a a MapFieldSelector
* @param fieldSelections maps from field names (String) to FieldSelectorResults
* @param fieldSelections maps from field names (String) to {@link FieldSelectorResult}s
*/
public MapFieldSelector(Map fieldSelections) {
this.fieldSelections = fieldSelections;