You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by yo...@apache.org on 2007/01/30 21:39:41 UTC

svn commit: r501549 - in /jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv: CSVParser.java CSVUtils.java

Author: yonik
Date: Tue Jan 30 12:39:40 2007
New Revision: 501549

URL: http://svn.apache.org/viewvc?view=rev&rev=501549
Log:
trivial cleanup of javadoc errors

Modified:
    jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
    jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java

Modified: jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java?view=diff&rev=501549&r1=501548&r2=501549
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java (original)
+++ jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java Tue Jan 30 12:39:40 2007
@@ -104,10 +104,9 @@
   // ======================================================
   
   /**
-   * Default strategy for the parser follows the default CSV Strategy.
+   * Default strategy for the parser follows the default {@link CSVStrategy}.
    * 
    * @param input an InputStream containing "csv-formatted" stream
-   * @see #setStrategy()
    * @deprecated use {@link #CSVParser(Reader)}.
    */
   public CSVParser(InputStream input) {
@@ -118,7 +117,6 @@
    * CSV parser using the default {@link CSVStrategy}.
    * 
    * @param input a Reader containing "csv-formatted" input
-   * @see #setStrategy()
    */
   public CSVParser(Reader input) {
     // note: must match default-CSV-strategy !!
@@ -128,8 +126,8 @@
   /**
    * Customized value delimiter parser.
    * 
-   * The parser follows the default CSV strategy as defined in 
-   * {@link #setStrategy()} except for the delimiter setting.
+   * The parser follows the default {@link CSVStrategy}
+   * except for the delimiter setting.
    * 
    * @param input a Reader based on "csv-formatted" input
    * @param delimiter a Char used for value separation

Modified: jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java?view=diff&rev=501549&r1=501548&r2=501549
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java (original)
+++ jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java Tue Jan 30 12:39:40 2007
@@ -75,12 +75,11 @@
   // ======================================================
   
   /**
-   * Parses the given String according to the default CSV strategy.
+   * Parses the given String according to the default {@link CSVStrategy}.
    * 
    * @param s CSV String to be parsed.
    * @return parsed String matrix (which is never null)
    * @throws IOException in case of error
-   * @see #setStrategy()
    */
   public static String[][] parse(String s) throws IOException {
     if (s == null) {
@@ -96,7 +95,7 @@
   }
   
   /**
-   * Parses the first line only according to the default CSV strategy.
+   * Parses the first line only according to the default {@link CSVStrategy}.
    * 
    * Parsing empty string will be handled as valid records containing zero
    * elements, so the following property holds: parseLine("").length == 0.
@@ -104,7 +103,6 @@
    * @param s CSV String to be parsed.
    * @return parsed String vector (which is never null)
    * @throws IOException in case of error
-   * @see #setStrategy()
    */
   public static String[] parseLine(String s) throws IOException {
     if (s == null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org