Skip to content

Commit 6eddd54

Browse files
committed
Javadoc: @Version.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398183 13f79535-47bb-0310-9956-ffa450edef68
1 parent fc11e68 commit 6eddd54

22 files changed

Lines changed: 65 additions & 0 deletions

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
* The format specification of a CSV file.
3535
*
3636
* This class is immutable.
37+
*
38+
* @version $Id: $
3739
*/
3840
public class CSVFormat implements Serializable {
3941

src/main/java/org/apache/commons/csv/CSVLexer.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525

2626
import java.io.IOException;
2727

28+
/**
29+
*
30+
*
31+
* @version $Id$
32+
*/
2833
final class CSVLexer extends Lexer {
2934

3035
/** ctor needs to be public so can be called dynamically by PerformanceTest class */

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@
6565
* <p>
6666
* see <a href="package-summary.html">package documentation</a> for more details
6767
* </p>
68+
*
69+
* @version $Id: $
6870
*/
6971
public class CSVParser implements Iterable<CSVRecord> {
7072

src/main/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030

3131
/**
3232
* Prints values in a CSV format.
33+
*
34+
* @version $Id: $
3335
*/
3436
public class CSVPrinter {
3537

src/main/java/org/apache/commons/csv/CSVRecord.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
/**
2626
* A CSV record
27+
*
28+
* @version $Id: $
2729
*/
2830
public class CSVRecord implements Serializable, Iterable<String> {
2931

src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
* <p>
3232
* In particular the reader supports a look-ahead option, which allows you to see the next char returned by
3333
* {@link #read()}.
34+
*
35+
* @version $Id: $
3436
*/
3537
final class ExtendedBufferedReader extends BufferedReader {
3638

src/main/java/org/apache/commons/csv/Lexer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929

3030
/**
3131
* Abstract lexer class; contains common utility routines shared by lexers
32+
*
33+
* @version $Id$
3234
*/
3335
abstract class Lexer {
3436

src/main/java/org/apache/commons/csv/Quote.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
/**
2020
* Defines quote behavior when printing.
21+
*
22+
* @version $Id$
2123
*/
2224
public enum Quote {
2325

src/main/java/org/apache/commons/csv/Token.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* Internal token representation.
2424
* <p/>
2525
* It is used as contract between the lexer and the parser.
26+
*
27+
* @version $Id$
2628
*/
2729
final class Token {
2830

src/test/java/org/apache/commons/csv/CSVFileParserTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
/**
4141
* Parse tests using test files
4242
*
43+
* @version $Id$
4344
*/
4445
@RunWith(Parameterized.class)
4546
public class CSVFileParserTest {

0 commit comments

Comments
 (0)