svn commit: r981009 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r981009 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java

lektran
Author: lektran
Date: Sat Jul 31 05:48:36 2010
New Revision: 981009

URL: http://svn.apache.org/viewvc?rev=981009&view=rev
Log:
Must have decided to finish the comments after adding the method to git's index, committing the rest of the comments.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java?rev=981009&r1=981008&r2=981009&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityDateFilterCondition.java Sat Jul 31 05:48:36 2010
@@ -144,11 +144,12 @@ public class EntityDateFilterCondition e
      * - fromDate is null and thruDate is equal to or after rangeStart
      * - thruDate is null and fromDate is before rangeEnd
      * - fromDate is null and thruDate is null
-     * @param rangeStart
-     * @param rangeEnd
-     * @param fromDateName
-     * @param thruDateName
-     * @return
+     *
+     * @param rangeStart    The start of the range to filter against
+     * @param rangeEnd      The end of the range to filter against
+     * @param fromDateName  The name of the field containing the entity's "fromDate"
+     * @param thruDateName  The name of the field containing the entity's "thruDate"
+     * @return EntityCondition representing the date range filter
      */
     public static EntityCondition makeRangeCondition(Timestamp rangeStart, Timestamp rangeEnd, String fromDateName, String thruDateName) {
         List<EntityCondition> criteria = FastList.newInstance();