Added javadoc documentation for some missing parameters for a CSVStrategy constructor.

git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1065347 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jacopo Cappellato 2011-01-30 18:45:26 +00:00
parent b1edd537c7
commit cfcca024a5
1 changed files with 5 additions and 2 deletions

View File

@ -59,13 +59,16 @@ public class CSVStrategy implements Cloneable, Serializable {
/**
* Customized CSV strategy setter.
*
*
* @param delimiter a Char used for value separation
* @param encapsulator a Char used as value encapsulation marker
* @param commentStart a Char used for comment identification
* @param escape a Char used to escape special characters in values
* @param ignoreLeadingWhitespace TRUE when leading whitespaces should be
* ignored
* @param interpretUnicodeEscapes TRUE when unicode escapes should be
* @param ignoreTrailingWhitespace TRUE when trailing whitespaces should be
* ignored
* @param interpretUnicodeEscapes TRUE when unicode escapes should be
* interpreted
* @param ignoreEmptyLines TRUE when the parser should skip emtpy lines
*/