Uses of Class
org.apache.commons.digester3.Substitutor
-
Packages that use Substitutor Package Description org.apache.commons.digester3 Thexmlrules
package provides for XML-based definition of rules forDigester
.org.apache.commons.digester3.binder The Digester EDSL allows configure Digester using fluent APIs.org.apache.commons.digester3.substitution Thesubstitution
provides for manipulation of xml attributes and element body text before the data is processed by any Rule objects. -
-
Uses of Substitutor in org.apache.commons.digester3
Fields in org.apache.commons.digester3 declared as Substitutor Modifier and Type Field Description private Substitutor
Digester. substitutor
An optional class that substitutes values in attributes and body text.Methods in org.apache.commons.digester3 that return Substitutor Modifier and Type Method Description Substitutor
Digester. getSubstitutor()
Gets theSubstitutor
used to convert attributes and body text.Methods in org.apache.commons.digester3 with parameters of type Substitutor Modifier and Type Method Description void
Digester. setSubstitutor(Substitutor substitutor)
Sets theSubstitutor
to be used to convert attributes and body text. -
Uses of Substitutor in org.apache.commons.digester3.binder
Fields in org.apache.commons.digester3.binder declared as Substitutor Modifier and Type Field Description private Substitutor
DigesterLoader. substitutor
An optional class that substitutes values in attributes and body text.Methods in org.apache.commons.digester3.binder with parameters of type Substitutor Modifier and Type Method Description DigesterLoader
DigesterLoader. setSubstitutor(Substitutor substitutor)
Sets theSubstitutor
to be used to convert attributes and body text. -
Uses of Substitutor in org.apache.commons.digester3.substitution
Subclasses of Substitutor in org.apache.commons.digester3.substitution Modifier and Type Class Description class
CompoundSubstitutor
This Substitutor chains two Substitutorsa
andb
.class
VariableSubstitutor
Substitutor implementation that support variable replacement for both attributes and body text.Fields in org.apache.commons.digester3.substitution declared as Substitutor Modifier and Type Field Description private Substitutor
CompoundSubstitutor. a
Substitutor aprivate Substitutor
CompoundSubstitutor. b
Substitutor bConstructors in org.apache.commons.digester3.substitution with parameters of type Substitutor Constructor Description CompoundSubstitutor(Substitutor a, Substitutor b)
Creates a new CompoundSubstitutor instance.
-