Uses of Class
com.acsinet_solutions.util.exception.EvaluationException

Packages that use EvaluationException
com.acsinet_solutions.cetia4.service This package defines some basic services and facilities that are used at some point on the framework. 
com.acsinet_solutions.cetia4.service.impl Simple generic implementations of services whose interfaces are defined in the parent package. 
com.acsinet_solutions.util.expr Generic expression utilities; this package defines interfaces and basic implementations regarding expression needs on utility classes and in the framework as a whole. 
com.acsinet_solutions.util.text This package provides text related facilities. 
 

Uses of EvaluationException in com.acsinet_solutions.cetia4.service
 

Methods in com.acsinet_solutions.cetia4.service that throw EvaluationException
 TransferableText TextFactory.getText(java.lang.String key, java.util.Map<java.lang.String,java.lang.Object> params)
          Get a text instance customized upon the given param values
 

Uses of EvaluationException in com.acsinet_solutions.cetia4.service.impl
 

Methods in com.acsinet_solutions.cetia4.service.impl that throw EvaluationException
 TransferableText TemplateTextFactory.getText(java.lang.String key, java.util.Map<java.lang.String,java.lang.Object> params)
           
 

Uses of EvaluationException in com.acsinet_solutions.util.expr
 

Methods in com.acsinet_solutions.util.expr that throw EvaluationException
 java.lang.Object Evaluator.evaluate(java.lang.Object bean)
          Evaluate the expression and return the bean This version throws checked exceptions.
 java.lang.Object BeanXPathEvaluator.evaluate(java.lang.Object bean)
          Evaluate the expression and return the bean This version throws checked exceptions.
 java.lang.Object XPathFinder.find(java.lang.String expression)
          Find an object from the given input exprssion
 

Uses of EvaluationException in com.acsinet_solutions.util.text
 

Methods in com.acsinet_solutions.util.text that throw EvaluationException
 java.lang.String TextTemplate.apply(java.util.Map params)
          Apply the given parameter map to the template and generate a string value as a result
 void TextTemplate.apply(java.util.Map params, java.io.Writer writer)
          Apply the given parameter map to the template and write the output to the provided writer
static java.io.Reader TextTemplate.transform(java.io.InputStream sourceStream, java.io.InputStream propertiesStream)
          In this method sourceStream represents the template source, and propertiesStream represents a properties file that holds the values of the variables that will be passed as the parameter map to the template to perform the substitution.