Skip to content

Commit

Permalink
Javadoc: Add missing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 24, 2024
1 parent eb68ced commit 4c63896
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS add file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS checkout file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS commit file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.commons.vfs2.operations.vcs;

/**
* The VCS commit listener.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS delete file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS log file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.Calendar;

/**
* A VFS log entry.
*
* @since 0.1
*/
Expand Down Expand Up @@ -66,6 +67,7 @@ public VcsLogEntry(final String author, final long revision, final String messag
}

/**
* Gets the author.
*
* @return The author.
*/
Expand All @@ -74,6 +76,7 @@ public String getAuthor() {
}

/**
* Gets the date.
*
* @return The date.
*/
Expand All @@ -82,6 +85,7 @@ public Calendar getDate() {
}

/**
* Gets the message.
*
* @return The message.
*/
Expand All @@ -90,6 +94,7 @@ public String getMessage() {
}

/**
* Gets the path.
*
* @return The path.
*/
Expand All @@ -98,6 +103,7 @@ public String getPath() {
}

/**
* Gets the revision.
*
* @return The revision.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.FileSystemException;

/**
* Handles VCS log entries.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.commons.vfs2.operations.vcs;

/**
* Handles VFS file modifications.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* <p>
* Restores pristine working copy file and cancels all local modifications. In other words, VcsRevert replaces working
* copy file with the latest version from the repository.
* </p>
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.commons.vfs2.operations.vcs;

/**
* Enumerates VFS status.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.apache.commons.vfs2.operations.FileOperation;

/**
* The VCS update file operation.
*
* @since 0.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.commons.vfs2.operations.vcs;

/**
* Handles VCS updates.
*
* @since 0.1
*/
Expand Down

0 comments on commit 4c63896

Please sign in to comment.