added javadocs

This commit is contained in:
Timo Westkämper 2010-04-08 20:25:12 +00:00
parent 5a8cdfb1f2
commit adc8e37f3c

View File

@ -86,6 +86,16 @@ public class EvaluatorFactory {
}
/**
* Create a new Evaluator instance
*
* @param <T> projection type
* @param source expression in Java source code form
* @param projectionType type of the source expression
* @param names names of the arguments
* @param types types of the arguments
* @return
*/
public <T> Evaluator<T> createEvaluator(String source,
Class<? extends T> projectionType, String[] names, Class<?>[] types) {