From 206cdfc17fb6f5c9bf7fb0f89160ecf62fcb6ec5 Mon Sep 17 00:00:00 2001 From: Brett Porter Date: Wed, 26 Jul 2006 03:51:31 +0000 Subject: [PATCH] add javadoc git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@425599 13f79535-47bb-0310-9956-ffa450edef68 --- .../maven/repository/indexing/query/RangeQuery.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/maven-repository-indexer/src/main/java/org/apache/maven/repository/indexing/query/RangeQuery.java b/maven-repository-indexer/src/main/java/org/apache/maven/repository/indexing/query/RangeQuery.java index c6d577a9b..632934a32 100644 --- a/maven-repository-indexer/src/main/java/org/apache/maven/repository/indexing/query/RangeQuery.java +++ b/maven-repository-indexer/src/main/java/org/apache/maven/repository/indexing/query/RangeQuery.java @@ -70,6 +70,8 @@ public class RangeQuery /** * Create a bounded range, excluding the endpoints. * + * @param begin the lower bound value to compare to + * @param end the upper bound value to compare to * @return the query object */ public static RangeQuery createExclusiveRange( QueryTerm begin, QueryTerm end ) @@ -80,6 +82,8 @@ public class RangeQuery /** * Create a bounded range, including the endpoints. * + * @param begin the lower bound value to compare to + * @param end the upper bound value to compare to * @return the query object */ public static RangeQuery createInclusiveRange( QueryTerm begin, QueryTerm end ) @@ -90,6 +94,7 @@ public class RangeQuery /** * Create a range that is greater than or equal to a given term. * + * @param begin the value to compare to * @return the query object */ public static RangeQuery createGreaterThanOrEqualToRange( QueryTerm begin ) @@ -100,6 +105,7 @@ public class RangeQuery /** * Create a range that is greater than a given term. * + * @param begin the value to compare to * @return the query object */ public static RangeQuery createGreaterThanRange( QueryTerm begin ) @@ -110,6 +116,7 @@ public class RangeQuery /** * Create a range that is less than or equal to a given term. * + * @param end the value to compare to * @return the query object */ public static RangeQuery createLessThanOrEqualToRange( QueryTerm end ) @@ -120,6 +127,7 @@ public class RangeQuery /** * Create a range that is less than a given term. * + * @param end the value to compare to * @return the query object */ public static RangeQuery createLessThanRange( QueryTerm end ) -- 2.39.5