Skip to content

Commit cfcca02

Browse files
committed
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
1 parent b1edd53 commit cfcca02

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/java/org/apache/commons/csv/CSVStrategy.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,16 @@ public CSVStrategy(char delimiter, char encapsulator, char commentStart) {
5959

6060
/**
6161
* Customized CSV strategy setter.
62-
*
62+
*
6363
* @param delimiter a Char used for value separation
6464
* @param encapsulator a Char used as value encapsulation marker
6565
* @param commentStart a Char used for comment identification
66+
* @param escape a Char used to escape special characters in values
6667
* @param ignoreLeadingWhitespace TRUE when leading whitespaces should be
6768
* ignored
68-
* @param interpretUnicodeEscapes TRUE when unicode escapes should be
69+
* @param ignoreTrailingWhitespace TRUE when trailing whitespaces should be
70+
* ignored
71+
* @param interpretUnicodeEscapes TRUE when unicode escapes should be
6972
* interpreted
7073
* @param ignoreEmptyLines TRUE when the parser should skip emtpy lines
7174
*/

0 commit comments

Comments
 (0)