This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git


The following commit(s) were added to refs/heads/master by this push:
     new 766eb5d4 Javadoc
     new 7c3322d6 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jcs
766eb5d4 is described below

commit 766eb5d4312198941159adeb88cd164987240e21
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Sep 30 17:53:00 2023 -0400

    Javadoc
---
 .../org/apache/commons/jcs3/auxiliary/AuxiliaryCacheConfigurator.java | 4 ++--
 .../org/apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java     | 2 +-
 .../commons/jcs3/engine/control/CompositeCacheConfigurator.java       | 2 +-
 .../main/java/org/apache/commons/jcs3/engine/stats/StatElement.java   | 4 ++--
 .../org/apache/commons/jcs3/engine/stats/behavior/IStatElement.java   | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AuxiliaryCacheConfigurator.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AuxiliaryCacheConfigurator.java
index 90f0610c..1d23d2ce 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AuxiliaryCacheConfigurator.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AuxiliaryCacheConfigurator.java
@@ -59,7 +59,7 @@ public class AuxiliaryCacheConfigurator
      * Parses the event logger config, if there is any for the auxiliary.
      * <p>
      * @param props
-     * @param auxPrefix - ex. AUXILIARY_PREFIX + auxName
+     * @param auxPrefix - For example, AUXILIARY_PREFIX + auxName
      * @return cacheEventLogger
      */
     public static ICacheEventLogger parseCacheEventLogger( final Properties 
props, final String auxPrefix )
@@ -86,7 +86,7 @@ public class AuxiliaryCacheConfigurator
      * Parses the element config, if there is any for the auxiliary.
      * <p>
      * @param props
-     * @param auxPrefix - ex. AUXILIARY_PREFIX + auxName
+     * @param auxPrefix - For example, AUXILIARY_PREFIX + auxName
      * @return cacheEventLogger
      */
     public static IElementSerializer parseElementSerializer( final Properties 
props, final String auxPrefix )
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java
index 4ffbc529..c3494f2f 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java
@@ -672,7 +672,7 @@ public abstract class AbstractDiskCache<K, V>
      * methods call the *WithEventLogging method on the super. The 
*WithEventLogging methods call
      * the abstract process* methods. The children implement the process 
methods.
      *
-     * ex. doGet calls getWithEventLogging, which calls processGet
+     * For example, doGet calls getWithEventLogging, which calls processGet
      */
 
     /**
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheConfigurator.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheConfigurator.java
index c7bb9b85..1551bc70 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheConfigurator.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/control/CompositeCacheConfigurator.java
@@ -491,7 +491,7 @@ public class CompositeCacheConfigurator
      * Creates a custom key matcher if one is defined.  Else, it uses the 
default.
      * <p>
      * @param props
-     * @param auxPrefix - ex. AUXILIARY_PREFIX + auxName
+     * @param auxPrefix - For example, AUXILIARY_PREFIX + auxName
      * @return IKeyMatcher
      */
     protected <K> IKeyMatcher<K> parseKeyMatcher( final Properties props, 
final String auxPrefix )
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/StatElement.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/StatElement.java
index b7b92d2c..3188a334 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/StatElement.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/StatElement.java
@@ -49,7 +49,7 @@ public class StatElement<V>
     }
 
     /**
-     * Get the name of the stat element, ex. HitCount
+     * Get the name of the stat element, for example, HitCount
      * <p>
      * @return the stat element name
      */
@@ -69,7 +69,7 @@ public class StatElement<V>
     }
 
     /**
-     * Get the data, ex. for hit count you would get a value for some number.
+     * Get the data, for example, for hit count you would get a value for some 
number.
      * <p>
      * @return data
      */
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/behavior/IStatElement.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/behavior/IStatElement.java
index a542477d..44e8ed5f 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/behavior/IStatElement.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/stats/behavior/IStatElement.java
@@ -27,7 +27,7 @@ import java.io.Serializable;
 public interface IStatElement<V> extends Serializable
 {
     /**
-     * Get the name of the stat element, ex. HitCount
+     * Get the name of the stat element, for example, HitCount
      * <p>
      * @return the stat element name
      */
@@ -39,7 +39,7 @@ public interface IStatElement<V> extends Serializable
     void setName( String name );
 
     /**
-     * Get the data, ex. for hit count you would get a value for some number.
+     * Get the data, for example, for hit count you would get a value for some 
number.
      * <p>
      * @return data
      */

Reply via email to