You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ja...@apache.org on 2011/01/30 19:45:26 UTC

svn commit: r1065347 - /commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java

Author: jacopoc
Date: Sun Jan 30 18:45:26 2011
New Revision: 1065347

URL: http://svn.apache.org/viewvc?rev=1065347&view=rev
Log:
Added javadoc documentation for some missing parameters for a CSVStrategy constructor.

Modified:
    commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java

Modified: commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java
URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java?rev=1065347&r1=1065346&r2=1065347&view=diff
==============================================================================
--- commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java (original)
+++ commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVStrategy.java Sun Jan 30 18:45:26 2011
@@ -59,13 +59,16 @@ public class CSVStrategy implements Clon
   
     /**
      * 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
      */