From: <fg...@us...> - 2010-01-20 23:41:58
|
Revision: 1700 http://openutils.svn.sourceforge.net/openutils/?rev=1700&view=rev Author: fgiust Date: 2010-01-20 23:41:52 +0000 (Wed, 20 Jan 2010) Log Message: ----------- spell check Modified Paths: -------------- trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld Modified: trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld =================================================================== --- trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld 2010-01-20 23:40:27 UTC (rev 1699) +++ trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld 2010-01-20 23:41:52 UTC (rev 1700) @@ -13,7 +13,7 @@ <function-signature>java.lang.String capitaliseAllWords(java.lang.String)</function-signature> </function> <function> - <description>Gets the substring after the last occurrence of a separator. The separator is not returned. The function accept 2 parameters:<![CDATA[ + <description>Gets the substring after the last occurrence of a separator. The separator is not returned. The function takes 2 parameters:<![CDATA[ <br/> <strong>java.lang.String: </strong>the String to get a substring from, may be null<br/> <strong>java.lang.String: </strong>the String to search for, may be null<br/> @@ -23,7 +23,7 @@ <function-signature>java.lang.String substringAfterLast(java.lang.String, java.lang.String)</function-signature> </function> <function> - <description>Gets the substring before the last occurrence of a separator. The separator is not returned. The function accept 2 parameters:<![CDATA[ + <description>Gets the substring before the last occurrence of a separator. The separator is not returned. The function takes 2 parameters:<![CDATA[ <br/> <strong>java.lang.String: </strong>the String to get a substring from, may be null<br/> <strong>java.lang.String: </strong>the String to search for, may be null<br/> @@ -86,7 +86,7 @@ </example> </function> <function> - <description>Crops a String to a given length, adding a suffix (for example "...") if needed. The function accept 3 parameters: + <description>Crops a String to a given length, adding a suffix (for example "...") if needed. The function takes 3 parameters: <![CDATA[<br/><strong>java.lang.String:</strong> the string to be adapted<br/> <strong>int:</strong> the number of chars of the string to be kept<br/> <strong>java.lang.String:</strong> the suffix to be added if the string is not complete @@ -125,7 +125,7 @@ <function-signature>java.lang.String strip(java.lang.String)</function-signature> </function> <function> - <description>Returns either the passed in String, or if the String is empty or null, the value of defaultStr. The function accept 2 parameters:<![CDATA[ + <description>Returns either the passed in String, or if the String is empty or null, the value of defaultStr. The function takes 2 parameters:<![CDATA[ <br/> <strong>java.lang.String: </strong>the String to check, may be null<br/> <strong>java.lang.String: </strong>the default String to return if the string to check is null of empty<br/> @@ -135,7 +135,7 @@ <function-signature>java.lang.String defaultIfEmpty(java.lang.String, java.lang.String)</function-signature> </function> <function> - <description>A wrapper around java.lang.String#endsWith(..). Tests if this string ends with the specified suffix. The function accept 2 parameters:<![CDATA[ + <description>A wrapper around java.lang.String#endsWith(..). Tests if this string ends with the specified suffix. The function takes 2 parameters:<![CDATA[ <br/> <strong>java.lang.String: </strong>string to evaluate<br/> <strong>java.lang.String: </strong>suffix<br/> @@ -146,7 +146,7 @@ </function> <function> <name>shorten</name> - <description>Shorten a text with a number of lines and a number of chars per line to be displayed. Display ellipses the line is shortened. The function accept 4 parameters: + <description>Shorten a text with a number of lines and a number of chars per line to be displayed. Display ellipses the line is shortened. The function takes 4 parameters: <![CDATA[ <br/> <strong>java.lang.String: </strong>original text<br/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fg...@us...> - 2011-04-27 13:03:08
|
Revision: 3437 http://openutils.svn.sourceforge.net/openutils/?rev=3437&view=rev Author: fgiust Date: 2011-04-27 13:03:02 +0000 (Wed, 27 Apr 2011) Log Message: ----------- fix tld formatting Modified Paths: -------------- trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld Modified: trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld =================================================================== --- trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld 2011-04-27 12:57:20 UTC (rev 3436) +++ trunk/openutils-elfunctions/src/main/resources/META-INF/stringutils.tld 2011-04-27 13:03:02 UTC (rev 3437) @@ -10,8 +10,7 @@ <description>Capitalizes all the whitespace separated words in a String. Only the first letter of each word is changed.</description> <name>capitaliseAllWords</name> <function-class>org.apache.commons.lang.StringUtils</function-class> - <function-signature>java.lang.String - capitaliseAllWords(java.lang.String)</function-signature> + <function-signature>java.lang.String capitaliseAllWords(java.lang.String)</function-signature> </function> <function> <description>Gets the substring after the last occurrence of a separator. The separator is not returned. The function takes 2 parameters:<![CDATA[ @@ -21,8 +20,7 @@ ]]></description> <name>substringAfterLast</name> <function-class>org.apache.commons.lang.StringUtils</function-class> - <function-signature>java.lang.String - substringAfterLast(java.lang.String, java.lang.String)</function-signature> + <function-signature>java.lang.String substringAfterLast(java.lang.String, java.lang.String)</function-signature> </function> <function> <description>Gets the substring before the last occurrence of a separator. The separator is not returned. The function takes 2 parameters:<![CDATA[ @@ -32,8 +30,7 @@ ]]></description> <name>substringBeforeLast</name> <function-class>org.apache.commons.lang.StringUtils</function-class> - <function-signature>java.lang.String - substringBeforeLast(java.lang.String, java.lang.String)</function-signature> + <function-signature>java.lang.String substringBeforeLast(java.lang.String, java.lang.String)</function-signature> </function> <function> <description>Checks if a String is whitespace, empty ("") or null.</description> @@ -108,8 +105,7 @@ ]]></description> <name>adaptStringLength</name> <function-class>net.sourceforge.openutils.elfunctions.ElStringUtils</function-class> - <function-signature>java.lang.String - adaptStringLength(java.lang.String, int, java.lang.String)</function-signature> + <function-signature>java.lang.String adaptStringLength(java.lang.String, int, java.lang.String)</function-signature> <example> <![CDATA[ adaptStringLength("pre",2,"post") : prpost This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |