Uses of Class
org.clapper.util.text.VariableSubstitutionException

Packages that use VariableSubstitutionException
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 VariableSubstitutionException in org.clapper.util.config
 

Methods in org.clapper.util.config that throw VariableSubstitutionException
 java.lang.String Configuration.getVariableValue(java.lang.String varName, java.lang.Object context)
          Get the value associated with a given variable.
 void Configuration.setVariable(java.lang.String sectionName, java.lang.String variableName, java.lang.String value, boolean expand)
          Set a variable's value.
 

Uses of VariableSubstitutionException in org.clapper.util.text
 

Subclasses of VariableSubstitutionException in org.clapper.util.text
 class UndefinedVariableException
          A UndefinedVariableException is thrown by the VariableSubstituter subclasses and VariableDereferencer subclasses to indicate an undefined variable.
 class VariableSyntaxException
          A VariableSyntaxException is thrown by the VariableSubstituter subclasses and VariableDereferencer subclasses to indicate a syntax error in a variable reference.
 

Methods in org.clapper.util.text that throw VariableSubstitutionException
 java.lang.String VariableDereferencer.getVariableValue(java.lang.String varName, java.lang.Object context)
          Get the value associated with a given variable.
 java.lang.String AbstractVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref)
          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, 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 AbstractVariableSubstituter.substitute(java.lang.String s, VariableDereferencer deref, java.lang.Object context)
          Substitute all variable references in the supplied string, using a Unix Bourne Shell-style variable syntax.
 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.