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. |