This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jci.git
The following commit(s) were added to refs/heads/master by this push:
new 5df3e40 Javadoc
5df3e40 is described below
commit 5df3e4077e302dc61df93189f1d765719d7c3610
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 11:22:22 2026 -0400
Javadoc
---
.../jci2/fam/monitor/FilesystemAlterationListener.java | 16 ++++++++--------
.../jci2/fam/monitor/FilesystemAlterationMonitor.java | 4 ++--
.../jci2/fam/monitor/FilesystemAlterationObserver.java | 4 ++--
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationListener.java
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationListener.java
index 8e14fea..5a2072f 100644
---
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationListener.java
+++
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationListener.java
@@ -29,56 +29,56 @@ public interface FilesystemAlterationListener {
/**
* Receives notification that we are starting to observe.
*
- * @param observer the observer.
+ * @param observer The observer.
*/
void onStart(final FilesystemAlterationObserver observer);
/**
* Receives notification that a file was created.
*
- * @param file the file.
+ * @param file The file.
*/
void onFileCreate(final File file);
/**
* Receives notification that a file was changed.
*
- * @param file the file.
+ * @param file The file.
*/
void onFileChange(final File file);
/**
* Receives notification that a file was deleted.
*
- * @param file the file.
+ * @param file The file.
*/
void onFileDelete(final File file);
/**
* Receives notification that a directory was created.
*
- * @param directory the directory.
+ * @param directory The directory.
*/
void onDirectoryCreate(final File directory);
/**
* Receives notification that a directory was changed.
*
- * @param directory the directory.
+ * @param directory The directory.
*/
void onDirectoryChange(final File directory);
/**
* Receives notification that a directory was deleted.
*
- * @param directory the directory.
+ * @param directory The directory.
*/
void onDirectoryDelete(final File directory);
/**
* Receives notification that we are stopping to observe.
*
- * @param observer the observer.
+ * @param observer The observer.
*/
void onStop(final FilesystemAlterationObserver observer);
}
diff --git
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java
index f838a79..ea40b28 100644
---
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java
+++
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java
@@ -73,7 +73,7 @@ public final class FilesystemAlterationMonitor implements
Runnable {
/**
* Sets the delay between calls to the observers.
*
- * @param pDelay the delay in milliseconds (default if not set 3000 ms)
+ * @param pDelay The delay in milliseconds (default if not set 3000 ms)
*/
public void setInterval( final long pDelay ) {
delay = pDelay;
@@ -120,7 +120,7 @@ public final class FilesystemAlterationMonitor implements
Runnable {
/**
* Gets the array of listeners for the given file.
*
- * @param pRoot the file to query.
+ * @param pRoot The file to query.
* @return The array of listeners for the given file or an empty array.
*/
public FilesystemAlterationListener[] getListenersFor( final File pRoot )
{
diff --git
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationObserver.java
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationObserver.java
index 8d6ab83..1efe30d 100644
---
a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationObserver.java
+++
b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationObserver.java
@@ -39,14 +39,14 @@ public interface FilesystemAlterationObserver {
/**
* Add a listener.
*
- * @param listener a listener.
+ * @param listener A listener.
*/
void addListener(final FilesystemAlterationListener listener);
/**
* Removes the given listener.
*
- * @param listener a listener
+ * @param listener A listener
*/
void removeListener(final FilesystemAlterationListener listener);