From: <die...@us...> - 2010-03-08 17:50:35
|
Revision: 2113 http://openutils.svn.sourceforge.net/openutils/?rev=2113&view=rev Author: diego_schivo Date: 2010-03-08 17:50:29 +0000 (Mon, 08 Mar 2010) Log Message: ----------- ELFUNCTIONS-5 javadoc Modified Paths: -------------- trunk/openutils-elfunctions/src/main/java/net/sourceforge/openutils/elfunctions/DateElUtils.java trunk/openutils-elfunctions/src/main/resources/META-INF/dateutils.tld Modified: trunk/openutils-elfunctions/src/main/java/net/sourceforge/openutils/elfunctions/DateElUtils.java =================================================================== --- trunk/openutils-elfunctions/src/main/java/net/sourceforge/openutils/elfunctions/DateElUtils.java 2010-03-08 17:40:53 UTC (rev 2112) +++ trunk/openutils-elfunctions/src/main/java/net/sourceforge/openutils/elfunctions/DateElUtils.java 2010-03-08 17:50:29 UTC (rev 2113) @@ -328,10 +328,10 @@ } /** - * Tests if the current date is between the specified time limits - * @param from - * @param to - * @return + * Tests if the current date is between the specified time interval (limits included) + * @param from interval start + * @param to interval end + * @return true if the current date falls within the specified interval, false otherwise */ public static boolean currentDateIncluded(Calendar from, Calendar to) { Modified: trunk/openutils-elfunctions/src/main/resources/META-INF/dateutils.tld =================================================================== --- trunk/openutils-elfunctions/src/main/resources/META-INF/dateutils.tld 2010-03-08 17:40:53 UTC (rev 2112) +++ trunk/openutils-elfunctions/src/main/resources/META-INF/dateutils.tld 2010-03-08 17:50:29 UTC (rev 2113) @@ -57,7 +57,7 @@ </function> <function> <name>currentDateIncluded</name> - <description>Tests if the current date is between the specified time limits</description> + <description>Tests if the current date is between the specified time interval (limits included)</description> <function-class>net.sourceforge.openutils.elfunctions.DateElUtils</function-class> <function-signature>boolean currentDateIncluded(java.util.Calendar, java.util.Calendar)</function-signature> </function> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |