Skip to content

Commit 4c63896

Browse files
committed
Javadoc: Add missing comments
1 parent eb68ced commit 4c63896

File tree

13 files changed

+17
-2
lines changed

13 files changed

+17
-2
lines changed

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsAdd.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.apache.commons.vfs2.operations.FileOperation;
2020

2121
/**
22+
* The VCS add file operation.
2223
*
2324
* @since 0.1
2425
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsCheckout.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import org.apache.commons.vfs2.operations.FileOperation;
2121

2222
/**
23+
* The VCS checkout file operation.
2324
*
2425
* @since 0.1
2526
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsCommit.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.apache.commons.vfs2.operations.FileOperation;
2020

2121
/**
22+
* The VCS commit file operation.
2223
*
2324
* @since 0.1
2425
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsCommitListener.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.apache.commons.vfs2.operations.vcs;
1818

1919
/**
20+
* The VCS commit listener.
2021
*
2122
* @since 0.1
2223
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsDelete.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.apache.commons.vfs2.operations.FileOperation;
2020

2121
/**
22+
* The VCS delete file operation.
2223
*
2324
* @since 0.1
2425
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsLog.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.apache.commons.vfs2.operations.FileOperation;
2020

2121
/**
22+
* The VCS log file operation.
2223
*
2324
* @since 0.1
2425
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsLogEntry.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.util.Calendar;
2020

2121
/**
22+
* A VFS log entry.
2223
*
2324
* @since 0.1
2425
*/
@@ -66,6 +67,7 @@ public VcsLogEntry(final String author, final long revision, final String messag
6667
}
6768

6869
/**
70+
* Gets the author.
6971
*
7072
* @return The author.
7173
*/
@@ -74,6 +76,7 @@ public String getAuthor() {
7476
}
7577

7678
/**
79+
* Gets the date.
7780
*
7881
* @return The date.
7982
*/
@@ -82,6 +85,7 @@ public Calendar getDate() {
8285
}
8386

8487
/**
88+
* Gets the message.
8589
*
8690
* @return The message.
8791
*/
@@ -90,6 +94,7 @@ public String getMessage() {
9094
}
9195

9296
/**
97+
* Gets the path.
9398
*
9499
* @return The path.
95100
*/
@@ -98,6 +103,7 @@ public String getPath() {
98103
}
99104

100105
/**
106+
* Gets the revision.
101107
*
102108
* @return The revision.
103109
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsLogEntryHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.apache.commons.vfs2.FileSystemException;
2020

2121
/**
22+
* Handles VCS log entries.
2223
*
2324
* @since 0.1
2425
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsModifyListener.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.apache.commons.vfs2.operations.vcs;
1818

1919
/**
20+
* Handles VFS file modifications.
2021
*
2122
* @since 0.1
2223
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/operations/vcs/VcsRevert.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
import org.apache.commons.vfs2.operations.FileOperation;
2020

2121
/**
22-
* <p>
2322
* Restores pristine working copy file and cancels all local modifications. In other words, VcsRevert replaces working
2423
* copy file with the latest version from the repository.
25-
* </p>
2624
*
2725
* @since 0.1
2826
*/

0 commit comments

Comments
 (0)