Made constants public for easier access from subclasses or wrappers.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@291996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2005-09-27 17:37:38 +00:00
parent d1f5ebf412
commit 3bac0b1b17
1 changed files with 3 additions and 3 deletions

View File

@ -465,13 +465,13 @@ public static interface VariableResolver {
} }
/** Constant for the default escape character. */ /** Constant for the default escape character. */
static final char DEFAULT_ESCAPE = '$'; public static final char DEFAULT_ESCAPE = '$';
/** Constant for the default variable prefix. */ /** Constant for the default variable prefix. */
static final String DEFAULT_PREFIX = "${"; public static final String DEFAULT_PREFIX = "${";
/** Constant for the default variable suffix. */ /** Constant for the default variable suffix. */
static final String DEFAULT_SUFFIX = "}"; public static final String DEFAULT_SUFFIX = "}";
/** /**
* Replaces the occurrences of all variables in the given source data by their current values obtained from the * Replaces the occurrences of all variables in the given source data by their current values obtained from the