You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/09/27 22:29:59 UTC

svn commit: r1842195 - in /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol: ConfigurationInterpolator.java ExprLookup.java

Author: ggregory
Date: Thu Sep 27 22:29:59 2018
New Revision: 1842195

URL: http://svn.apache.org/viewvc?rev=1842195&view=rev
Log:
Javadoc.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ExprLookup.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java?rev=1842195&r1=1842194&r2=1842195&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java Thu Sep 27 22:29:59 2018
@@ -368,7 +368,7 @@ public class ConfigurationInterpolator
     /**
      * Sets the flag whether variable names can contain other variables. This
      * flag corresponds to the {@code enableSubstitutionInVariables} property of
-     * the underlying {@code StrSubstitutor} object.
+     * the underlying {@code StringSubstitutor} object.
      *
      * @param f the new value of the flag
      */
@@ -473,12 +473,12 @@ public class ConfigurationInterpolator
     }
 
     /**
-     * Creates and initializes a {@code StrSubstitutor} object which is used for
-     * variable substitution. This {@code StrSubstitutor} is assigned a
+     * Creates and initializes a {@code StringSubstitutor} object which is used for
+     * variable substitution. This {@code StringSubstitutor} is assigned a
      * specialized lookup object implementing the correct variable resolving
      * algorithm.
      *
-     * @return the {@code StrSubstitutor} used by this object
+     * @return the {@code StringSubstitutor} used by this object
      */
     private StringSubstitutor initSubstitutor()
     {
@@ -507,7 +507,7 @@ public class ConfigurationInterpolator
     /**
      * Checks whether a value to be interpolated seems to be a single variable.
      * In this case, it is resolved directly without using the
-     * {@code StrSubstitutor}. Note that it is okay if this method returns a
+     * {@code StringSubstitutor}. Note that it is okay if this method returns a
      * false positive: In this case, resolving is going to fail, and standard
      * mechanism is used.
      *

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ExprLookup.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ExprLookup.java?rev=1842195&r1=1842194&r2=1842195&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ExprLookup.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/ExprLookup.java Thu Sep 27 22:29:59 2018
@@ -78,7 +78,7 @@ public class ExprLookup implements Looku
     /** The ConfigurationInterpolator used by this object. */
     private ConfigurationInterpolator interpolator;
 
-    /** The StrSubstitutor for performing replace operations. */
+    /** The StringSubstitutor for performing replace operations. */
     private StringSubstitutor substitutor;
 
     /** The logger used by this instance. */
@@ -247,7 +247,7 @@ public class ExprLookup implements Looku
     }
 
     /**
-     * Creates a {@code StrSubstitutor} object which uses the passed in
+     * Creates a {@code StringSubstitutor} object which uses the passed in
      * {@code ConfigurationInterpolator} as lookup object.
      *
      * @param ip the {@code ConfigurationInterpolator} to be used