Uses of Interface
org.clapper.util.text.VariableNameChecker

Packages that use VariableNameChecker
org.clapper.util.config org.clapper.util.config - A Configuration File Parser. 
org.clapper.util.text org.clapper.util.text - Text and String Classes. 
 

Uses of VariableNameChecker in org.clapper.util.config
 

Classes in org.clapper.util.config that implement VariableNameChecker
 class Configuration
          Configuration implements a parser, generator and in-memory store for a configuration file whose syntax is reminiscent of classic Windows .INI files, though with many extensions.
 

Uses of VariableNameChecker in org.clapper.util.text
 

Classes in org.clapper.util.text that implement VariableNameChecker
 class AbstractVariableSubstituter
          Abstract base class for VariableSubstituter classes, containing various useful utility methods.
 class UnixShellVariableSubstituter
          The UnixShellVariableSubstituter class implements the VariableSubstituter interface and provides an inline variable substitution capability using a simplified Unix Bourne (or GNU bash) shell variable syntax.
 class WindowsCmdVariableSubstituter
          The WindowsCmdVariableSubstituter class implements the VariableSubstituter interface and provides an inline variable substitution capability using a syntax that's reminiscent of the Microsoft Windows cmd.exe command interpreter.
 

Methods in org.clapper.util.text with parameters of type VariableNameChecker
 java.lang.String WindowsCmdVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, VariableNameChecker nameChecker, java.lang.Object context)
          Substitute all variable references in the supplied string, using a Unix Bourne Shell-style variable syntax.
 java.lang.String VariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, VariableNameChecker nameChecker, java.lang.Object context)
          Substitute all variable references in the supplied string, returning the new String, according to the variable syntax defined by the implementing class.
 java.lang.String UnixShellVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, VariableNameChecker nameChecker, java.lang.Object context)
          Substitute all variable references in the supplied string, using a Unix Bourne Shell-style variable syntax.
abstract  java.lang.String AbstractVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, VariableNameChecker nameChecker, java.lang.Object context)
          Substitute all variable references in the supplied string, using a Unix Bourne Shell-style variable syntax.
 java.lang.String UnixShellVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, VariableNameChecker nameChecker, java.lang.Object context, boolean allowEscapes)
          Deprecated. As of version 2.3; please use UnixShellVariableSubstituter.setHonorEscapes(boolean)
 



Copyright © 2004-2007 Brian M. Clapper. All Rights Reserved.